]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* files.el (hack-local-variables): Warn about misplaced lexical-binding.
[gnu-emacs] / lisp / ChangeLog
1 2013-10-16 Glenn Morris <rgm@gnu.org>
2
3 * files.el (hack-local-variables--warned-lexical): New.
4 (hack-local-variables):
5 Warn about misplaced lexical-binding. (Bug#15616)
6
7 * net/eww.el (eww-render): Always set eww-current-url,
8 and update header line. (Bug#15622)
9 (eww-display-html): ... Rather than just doing it here.
10
11 2013-10-15 Eli Zaretskii <eliz@gnu.org>
12
13 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
14 menu navigations commands.
15
16 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
17
18 * progmodes/subword.el (subword-capitalize): Be careful when
19 the search for [[:alpha:]] fails (bug#15580).
20
21 2013-10-14 Eli Zaretskii <eliz@gnu.org>
22
23 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
24 to commands that scroll the menu.
25
26 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
27
28 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
29 Handle methods ending with `?' and `!'.
30
31 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
32
33 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
34 `japanese-cp932' to `cp932' to fix the problem where saving a
35 source file written in Shift_JIS twice would end up having
36 `coding: japanese-cp932' which Ruby could not recognize.
37 (ruby-mode-set-encoding): Add support for encodings mapped to nil
38 in `ruby-encoding-map'.
39 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
40 doesn't need to be explicitly declared in magic comment.
41 (ruby-encoding-map): Add type declaration for better customize UI.
42
43 2013-10-13 Glenn Morris <rgm@gnu.org>
44
45 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
46 Occur buffers are read-only. http://bugs.debian.org/720775
47
48 * emacs-lisp/authors.el (authors-fixed-entries):
49 Comment out old alpha stuff.
50
51 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
52
53 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
54 to `after-save-hook' instead of `before-save-hook'.
55 (ruby-mode-set-encoding): Use the value of coding system used to
56 write the file. Call `basic-save-buffer-1' after modifying the
57 buffer.
58
59 2013-10-13 Alan Mackenzie <acm@muc.de>
60
61 Fix indentation/fontification of Java enum with
62 "implements"/generic.
63
64 * progmodes/cc-engine.el (c-backward-over-enum-header):
65 Extracted from the three other places and enhanced to handle generics.
66 (c-inside-bracelist-p): Uses new function above.
67 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
68 function above.
69 (c-font-lock-enum-tail): Uses new function above.
70
71 2013-10-13 Kenichi Handa <handa@gnu.org>
72
73 * international/mule-cmds.el (select-safe-coding-system): Remove a
74 superfluous condition in chekcing whether a coding system is safe
75 or not.
76
77 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
78
79 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
80
81 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
82
83 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
84
85 2013-10-13 Glenn Morris <rgm@gnu.org>
86
87 * menu-bar.el (menu-bar-update-buffers):
88 Unify Buffers menu prompt string. (Bug#15576)
89
90 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
91
92 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
93 Add some entries.
94 (authors-fixed-entries): Use accented form of name.
95
96 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
97
98 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
99 method calls (bug#15594).
100 (ruby-smie--args-separator-p): New function.
101 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
102 recognize paren-free method calls.
103
104 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
105 internals of universal-argument.
106
107 2013-10-11 Eli Zaretskii <eliz@gnu.org>
108
109 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
110 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
111 dropped menu on second mouse click on the menu bar.
112
113 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
114
115 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
116 (explicit-shell-file-name): Declare.
117 (sh--vars-before-point, sh--cmd-completion-table): New functions.
118 (sh-completion-at-point-function): New function.
119 (sh-mode): Use it.
120 (sh-smie--keyword-p): Remove unused argument.
121 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
122 vars.
123 (sh-set-shell): Always setup SMIE, even if we use the
124 old indentation code.
125
126 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
127
128 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
129 cases of ? and =.
130 (ruby-smie-rules): Simplify the "do" rule. The cases when the
131 predicate would return nil are almost non-existent.
132 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
133
134 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
135 cache also after commands that modify the buffer but don't move
136 point.
137
138 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
139
140 * env.el (substitute-env-in-file-name): New function.
141 (substitute-env-vars): Extend the meaning of the optional arg.
142
143 2013-10-10 Eli Zaretskii <eliz@gnu.org>
144
145 * term/w32-win.el (dynamic-library-alist): Define separate lists
146 of GIF DLLs for versions before and after 5.0.0 of giflib.
147 (Bug#15531)
148
149 2013-10-10 João Távora <joaotavora@gmail.com>
150
151 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
152 not locked, use last revision and current source as
153 defaults. (Bug#15569)
154
155 2013-10-10 Masatake YAMATO <yamato@redhat.com>
156
157 * menu-bar.el (menu-bar-open): Don't use popup-menu if
158 menu-bar is hidden.
159
160 2013-10-10 Martin Rudalics <rudalics@gmx.at>
161
162 * window.el (pop-to-buffer-same-window): Fix doc-string.
163 (Bug#15492)
164
165 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
166
167 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
168
169 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
170
171 * calendar/icalendar.el (icalendar-import-file):
172 Fix interactive spec. (Bug#15482)
173
174 2013-10-10 Glenn Morris <rgm@gnu.org>
175
176 * desktop.el (desktop-save): Default to saving in .emacs.d,
177 since PWD is no longer in desktop-path by default. (Bug#15319)
178
179 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
180 now that text mode has a menu with the same entry.
181 (menu-bar-text-mode-auto-fill): Remove now unused func.
182 * textmodes/text-mode.el (text-mode-map):
183 Use auto-fill help text from menu-bar.el.
184
185 2013-10-10 John Anthony <john@jo.hnanthony.com> (tiny change)
186
187 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
188
189 2013-10-09 Juri Linkov <juri@jurta.org>
190
191 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
192 instead of this-command-keys. Add universal-argument-more and
193 universal-argument-minus to the list of prefix commands. (Bug#15568)
194
195 2013-10-09 Glenn Morris <rgm@gnu.org>
196
197 * vc/vc-svn.el (vc-svn-create-repo):
198 Expand paths in file://... url. (Bug#15446)
199
200 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
201 Add some entries.
202 (authors): Remove unused local variables.
203
204 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
205
206 * profiler.el: Create a more coherent calltree from partial backtraces.
207 (profiler-format): Hide the tail with `invisible' so that C-s can still
208 find the hidden elements.
209 (profiler-calltree-depth): Don't recurse so enthusiastically.
210 (profiler-function-equal): New hash-table-test.
211 (profiler-calltree-build-unified): New function.
212 (profiler-calltree-build): Use it.
213 (profiler-report-make-name-part): Indent the calltree less.
214 (profiler-report-mode): Add visibility specs for profiler-format.
215 (profiler-report-expand-entry, profiler-report-toggle-entry):
216 Expand the whole subtree when provided with a prefix arg.
217
218 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
219
220 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
221 iuwu-mod token.
222 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
223 hanging iuwu-mod token.
224 (ruby-smie--forward-token): Do not include a dot after a token in
225 that token.
226 (ruby-smie--backward-token): Likewise.
227
228 2013-10-08 Juri Linkov <juri@jurta.org>
229
230 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
231 to isearch-other-control-char.
232 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
233 and isearch-post-command-hook to post-command-hook.
234 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
235 and isearch-post-command-hook from post-command-hook.
236 (isearch-unread-key-sequence)
237 (isearch-reread-key-sequence-naturally)
238 (isearch-lookup-scroll-key, isearch-other-control-char)
239 (isearch-other-meta-char): Remove functions.
240 (isearch-pre-command-hook, isearch-post-command-hook):
241 New functions based on isearch-other-meta-char rewritten
242 relying on the new behavior of overriding-terminal-local-map
243 that does not replace the local keymaps any more. (Bug#15200)
244
245 2013-10-08 Eli Zaretskii <eliz@gnu.org>
246
247 Support menus on text-mode terminals.
248 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
249 functionality.
250
251 * tooltip.el (tooltip-mode): Don't error out on TTYs.
252
253 * menu-bar.el (popup-menu, popup-menu-normalize-position):
254 Move here from mouse.el.
255 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
256 and arrow keys.
257 (tty-menu-navigation-map): New map for TTY menu navigation.
258
259 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
260
261 * frame.el (display-mouse-p): Report text-mode mouse as available
262 on w32.
263 (display-popup-menus-p): Report availability if mouse is
264 available; don't condition on window-system.
265
266 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
267 (tty-menu-selected-face): New faces.
268
269 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
270
271 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
272 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
273 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
274 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
275 New constants.
276 (lisp-mode-variables): New `elisp' argument.
277 (emacs-lisp-mode): Use it.
278 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
279 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
280
281 * indent.el: Use lexical-binding.
282 (indent-region): Add progress reporter.
283 (tab-stop-list): Make it implicitly extend to infinity by repeating the
284 last step.
285 (indent--next-tab-stop): New function to implement this behavior.
286 (tab-to-tab-stop, move-to-tab-stop): Use it.
287
288 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
289
290 * indent.el (indent-rigidly--current-indentation): New function.
291 (indent-rigidly-map): New var.
292 (indent-rigidly): Use it to provide interactive mode (bug#8196).
293
294 2013-10-08 Bastien Guerry <bzg@gnu.org>
295
296 * register.el (insert-register): Fix 2013-10-07T01:28:34Z!sdl.web@gmail.com.
297
298 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
299
300 * progmodes/perl-mode.el: Use lexical-binding.
301 Remove redundant :group args.
302 (perl-nochange): Change default to be closer to other major modes's
303 standard behavior.
304 (perl-indent-line): Don't consider text on current line as a
305 valid beginning of function from which to indent.
306
307 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
308 with more than one argument (bug#15538).
309
310 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
311
312 * vc/pcvs.el: Use lexical-binding.
313 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
314 environment of `eval'.
315 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
316 than a list of expressions. Adjust callers.
317 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
318
319 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
320
321 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
322 case of the dot in a chained method call being on the following line.
323
324 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
325
326 * electric.el (electric-indent-inhibit): New var.
327 (electric-indent-post-self-insert-function): Use it.
328 * progmodes/python.el (python-mode): Set it.
329
330 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
331 open braces.
332
333 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
334
335 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
336 (css-mode): Use electric-indent-chars.
337
338 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
339 (font-lock-beg, font-lock-end): Move before first use.
340 (nxml-mode): Use syntax-propertize-function.
341 (nxml-after-change, nxml-after-change1): Adjust accordingly.
342 (nxml-extend-after-change-region): Remove.
343 * nxml/xmltok.el: Use lexical-binding.
344 (xmltok-save): Use `declare'.
345 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
346 * nxml/nxml-util.el: Use lexical-binding.
347 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
348 Use `declare'.
349 * nxml/nxml-ns.el: Use lexical-binding.
350 (nxml-ns-save): Use `declare'.
351 (nxml-ns-prefixes-for): Avoid add-to-list.
352 * nxml/rng-match.el: Use lexical-binding.
353 (rng--ipattern): Use cl-defstruct.
354 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
355 (rng-cons-group-after, rng-subst-group-after)
356 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
357 Use closures instead of `(lambda...).
358
359 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
360
361 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
362 of BEG and END.
363
364 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
365 Use `tramp-handle-insert-file-contents'.
366 (tramp-gvfs-handle-insert-file-contents): Remove function.
367
368 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
369 Use `save-restriction' in order to keep markers.
370
371 * net/trampver.el: Update release number.
372
373 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
374
375 * progmodes/compile.el (compilation-parse-errors):
376 Use compilation--put-prop.
377 (compilation--ensure-parse): Check compilation-multiline.
378
379 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
380
381 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
382 lexical-binding.
383
384 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
385
386 * progmodes/ruby-mode.el: Fix recently added tests.
387 (ruby-smie-grammar): Add - and +.
388 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
389 (ruby-smie--backward-id): New functions.
390 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
391 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
392 any more.
393
394 2013-10-07 Leo Liu <sdl.web@gmail.com>
395
396 * register.el (register-preview-delay)
397 (register-preview-functions): New variables.
398 (register-read-with-preview, register-preview)
399 (register-describe-oneline): New functions.
400 (point-to-register, window-configuration-to-register)
401 (frame-configuration-to-register, jump-to-register)
402 (number-to-register, view-register, insert-register)
403 (copy-to-register, append-to-register, prepend-to-register)
404 (copy-rectangle-to-register): Use register-read-with-preview to
405 read register. (Bug#15525)
406
407 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
408
409 * net/network-stream.el (network-stream-open-starttls): Don't add
410 --insecure if it's already present, because that gnutls-cli
411 rejects getting that parameter twice.
412
413 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
414
415 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
416 keyword, too.
417
418 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
419
420 * newcomment.el (comment-use-global-state): Change default value
421 to t, mark obsolete (Bug#15251).
422 (comment-beginning): In addition to `comment-to-syntax', check the
423 value of `comment-use-global-state'.
424
425 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
426
427 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
428 (ruby-comment-column): Follow the global default, by default.
429 (ruby-smie-grammar): Add assignment syntax.
430 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
431 open-paren, a comma, or a \.
432 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
433 and line continuations.
434 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
435 followed by implicit semi-colons. Add rule for string concatenation
436 and for indentation at BOB.
437 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
438
439 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
440 calling next-sexp, since next-token may have skipped chars which
441 next-sexp doesn't know should be skipped!
442
443 2013-10-05 Leo Liu <sdl.web@gmail.com>
444
445 * progmodes/octave.el (octave-send-region):
446 Call compilation-forget-errors.
447
448 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
449
450 * vc/vc-svn.el (vc-svn-find-admin-dir):
451 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
452 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
453 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
454 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
455
456 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
457
458 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
459
460 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
461
462 * subr.el (read-passwd): Hide chars even when called within a context
463 where after-change-functions is disabled (bug#15501).
464 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
465 until we removed ourself from overriding-terminal-local-map.
466
467 2013-10-04 Leo Liu <sdl.web@gmail.com>
468
469 * progmodes/octave.el (inferior-octave-mode):
470 Call compilation-forget-errors.
471
472 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
473
474 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
475
476 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
477
478 * net/secrets.el (secrets-create-collection): Add optional
479 argument ALIAS. Use proper Label keyword. Append ALIAS as
480 dbus-call-method argument. (Bug#15516)
481
482 2013-10-04 Leo Liu <sdl.web@gmail.com>
483
484 * progmodes/octave.el (inferior-octave-error-regexp-alist)
485 (inferior-octave-compilation-font-lock-keywords): New variables.
486 (compilation-error-regexp-alist)
487 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
488 (inferior-octave-mode): Use compilation-shell-minor-mode.
489
490 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
491
492 * minibuffer.el (completion--replace): Be careful that `end' might be
493 a marker.
494
495 2013-10-03 Daiki Ueno <ueno@gnu.org>
496
497 Add support for package signature checking.
498 * emacs-lisp/package.el (url-http-file-exists-p)
499 (epg-make-context, epg-context-set-home-directory)
500 (epg-verify-string, epg-context-result-for)
501 (epg-signature-status, epg-signature-to-string)
502 (epg-check-configuration, epg-configuration)
503 (epg-import-keys-from-file): Declare.
504 (package-check-signature): New user option.
505 (package-unsigned-archives): New user option.
506 (package-desc): Add `signed' field.
507 (package-load-descriptor): Set `signed' field if .signed file exists.
508 (package--archive-file-exists-p): New function.
509 (package--check-signature): New function.
510 (package-install-from-archive): Check package signature.
511 (package--download-one-archive): Check archive signature.
512 (package-delete): Remove .signed file.
513 (package-import-keyring): New command.
514 (package-refresh-contents): Import default keyring.
515 (package-desc-status): Add "unsigned" status.
516 (describe-package-1, package-menu--print-info)
517 (package-menu-mark-delete, package-menu--find-upgrades)
518 (package-menu--status-predicate): Support "unsigned" status.
519
520 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
521
522 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
523 the new compilation scheme using the new byte-codes.
524
525 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
526 (byte-pophandler): New byte codes.
527 (byte-goto-ops): Adjust accordingly.
528 (byte-compile--use-old-handlers): New var.
529 (byte-compile-catch): Use new byte codes depending on
530 byte-compile--use-old-handlers.
531 (byte-compile-condition-case--old): Rename from
532 byte-compile-condition-case.
533 (byte-compile-condition-case--new): New function.
534 (byte-compile-condition-case): New function that dispatches depending
535 on byte-compile--use-old-handlers.
536 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
537 when we can.
538
539 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
540 Optimize under `condition-case' and `catch' if
541 byte-compile--use-old-handlers is nil.
542 (disassemble-offset): Handle new bytecodes.
543
544 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
545
546 * subr.el (error): Use `declare'.
547 (decode-char, encode-char): Use advertised-calling-convention instead
548 of the docstring to discourage use of the `restriction' arg.
549
550 2013-10-03 Daiki Ueno <ueno@gnu.org>
551
552 * epg.el (epg-verify-file): Add a comment saying that it does not
553 notify verification error as a return value nor a signal.
554 (epg-verify-string): Ditto.
555
556 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
557
558 * progmodes/compile.el (compilation-start): Try globbing the arg to
559 `cd' (bug#15417).
560
561 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
562
563 Sync with Tramp 2.2.8.
564
565 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
566 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
567 * net/trampver.el: Update release number.
568
569 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
570
571 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
572 and default-process-coding-system for darwin only.
573
574 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
575
576 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
577
578 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
579
580 * vc/vc-git.el (vc-git-grep): Disable pager.
581
582 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
583
584 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
585 Use :url instead of :homepage, as per
586 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
587
588 * newcomment.el (comment-beginning): When `comment-use-syntax' is
589 non-nil, use `syntax-ppss' (Bug#15251).
590
591 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
592
593 * progmodes/octave.el (inferior-octave-startup-file):
594 Prefer ~/.emacs.d/init_octave.m.
595
596 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
597
598 * emacs-lisp/package.el (package-desc-from-define):
599 Accept additional arguments as plist, convert them to an alist and store
600 them in the `extras' slot.
601 (package-generate-description-file): Convert extras alist back to
602 plist and append to the `define-package' form arguments.
603 (package--alist-to-plist): New function.
604 (package--ac-desc): Add `extras' slot.
605 (package--add-to-archive-contents): Check if the archive-contents
606 vector is long enough, and if it is, pass its `extras' slot value
607 to `package-desc-create'.
608 (package-buffer-info): Call `lm-homepage', pass the returned value
609 to `package-desc-from-define'.
610 (describe-package-1): Render the homepage button (Bug#13291).
611
612 * emacs-lisp/package-x.el (package-upload-buffer-internal):
613 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
614
615 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
616
617 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
618 and default-process-coding-system to utf-8-unix (Bug#15402).
619
620 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
621
622 * subr.el (looking-back): Do not recommend using looking-back.
623
624 2013-09-28 Alan Mackenzie <acm@muc.de>
625
626 Fix indentation/fontification of Java enum with "implements".
627
628 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
629 regexp which matches "implements", etc., in Java.
630 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
631 specifier clauses coming after "enum".
632 * progmodes/cc-fonts.el (c-font-lock-declarations)
633 (c-font-lock-enum-tail): Check for extra specifier clauses coming
634 after "enum".
635
636 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
637
638 * faces.el (region): Change ns_selection_color to
639 ns_selection_fg_color, add ns_selection_bg_color.
640
641 2013-09-28 Leo Liu <sdl.web@gmail.com>
642
643 * progmodes/octave.el (inferior-octave-completion-table)
644 (inferior-octave-completion-at-point): Minor tweaks.
645
646 * textmodes/ispell.el (ispell-lookup-words): Rename from
647 lookup-words. (Bug#15460)
648 (lookup-words): Obsolete.
649 (ispell-complete-word, ispell-command-loop): All uses changed.
650
651 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
652
653 * lisp/progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
654 (octave-mode-menu): Add octave-send-buffer.
655 (octave-send-buffer): New function.
656
657 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
658
659 * lisp/progmodes/octave.el (octave-mode-map): Add key binding for
660 octave-lookfor.
661 (octave-mode-menu): Add octave-lookfor.
662 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
663 octave-lookfor.
664 (octave-lookfor): New function.
665
666 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
667
668 * emacs-lisp/cl-macs.el:
669 (cl--loop-destr-temps): Remove.
670 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
671 its convention.
672 (cl--loop-set-iterator-function): New function.
673 (cl-loop): Adjust accordingly, so as not to use cl-subst.
674 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
675 Bind `it' with `let' instead of substituting it with `cl-subst'.
676 (cl--unused-var-p): New function.
677 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
678 Eliminate some unused variable warnings (bug#15326).
679
680 2013-09-27 Tassilo Horn <tsdh@gnu.org>
681
682 * doc-view.el (doc-view-scale-reset): Rename from
683 `doc-view-reset-zoom-level'.
684 (doc-view-scale-adjust): New command.
685 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
686 `doc-view-scale-adjust'.
687
688 2013-09-26 Tassilo Horn <tsdh@gnu.org>
689
690 * doc-view.el (doc-view-reset-zoom-level): New command.
691 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
692 zoom commands (bug#15466).
693
694 2013-09-26 Kenichi Handa <handa@gnu.org>
695
696 * international/quail.el (quail-help): Make it not a command.
697
698 2013-09-26 Leo Liu <sdl.web@gmail.com>
699
700 * minibuffer.el (completion-all-sorted-completions): Make args
701 optional as they are.
702
703 2013-09-25 Daniel Colascione <dancol@dancol.org>
704
705 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
706 specs are and that they're not evaluated.
707
708 2013-09-24 Sam Steingold <sds@gnu.org>
709
710 * midnight.el (clean-buffer-list-kill-regexps)
711 (clean-buffer-list-kill-buffer-names): Update for the new Man
712 buffer naming which includes the object name.
713
714 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
715
716 * eshell/esh-cmd.el (eshell--sep-terms): New var.
717 (eshell-parse-command, eshell-parse-pipeline): Use it since
718 eshell-separate-commands requires a dynamic scoped var.
719 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
720
721 2013-09-23 Leo Liu <sdl.web@gmail.com>
722
723 * autoinsert.el (auto-insert-alist): Make the value of
724 lexical-binding match its file setting.
725
726 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
727
728 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
729
730 * autoarg.el (autoarg-kp-digit-argument):
731 * electric.el (Electric-command-loop):
732 * kmacro.el (kmacro-step-edit-insert):
733 Do not set universal-argument-num-events.
734
735 2013-09-22 Leo Liu <sdl.web@gmail.com>
736
737 * files.el (interpreter-mode-alist): Add octave.
738
739 2013-09-21 Alan Mackenzie <acm@muc.de>
740
741 C++: fontify identifier in declaration following "public:" correctly.
742 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
743 to match "public", etc.
744 (c-decl-prefix-re): Add ":" into the C++ value.
745 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
746 bit. Add a check for a ":" preceded by "public", etc.
747
748 2013-09-21 Eli Zaretskii <eliz@gnu.org>
749
750 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
751 recognized by GDB 7.5 and later.
752
753 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
754
755 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
756
757 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
758
759 * subr.el (internal--call-interactively): New const.
760 (called-interactively-p): Use it (bug#3984).
761
762 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
763
764 * vc/pcvs.el (cvs-mode-ignore):
765 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
766 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
767
768 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
769
770 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
771 (eshell-ls-orig-insert-directory): Remove.
772 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
773 (eshell-ls-use-in-dired): Use advice-add/remove.
774 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
775 Add `orig-fun' arg for use in :around advice.
776 Make it check (redundantly) eshell-ls-use-in-dired.
777
778 2013-09-19 Glenn Morris <rgm@gnu.org>
779
780 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
781
782 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
783
784 * emacs-lisp/eieio.el (class-parent): Undo previous change.
785
786 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
787
788 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
789 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
790 (tramp-get-remote-python): New defuns.
791 (tramp-get-remote-uid-with-perl)
792 (tramp-get-remote-gid-with-perl): New defuns. Perl code
793 contributed by yary <not.com@gmail.com> (tiny change).
794 (tramp-get-remote-uid-with-python)
795 (tramp-get-remote-gid-with-python): New defuns. Python code
796 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
797 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
798
799 2013-09-19 Glenn Morris <rgm@gnu.org>
800
801 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
802
803 * eshell/em-unix.el (eshell-remove-entries):
804 Rename argument to avoid name-clash with global `top-level'.
805
806 * eshell/esh-proc.el (eshell-kill-process-function):
807 Remove eshell-reset-after-proc from eshell-kill-hook if present.
808 (eshell-reset-after-proc): Remove unused arg `proc'.
809
810 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
811 (directory-files-and-attributes): Mark unused arg.
812
813 * eshell/em-unix.el (eshell-remove-entries):
814 Remove unused arg `path'. Update callers.
815
816 * eshell/em-hist.el (eshell-hist-parse-arguments):
817 Remove unused arg `silent'. Update callers.
818
819 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
820 Fix (f)boundp mix-up.
821
822 * eshell/em-smart.el (eshell-smart-scroll-window)
823 (eshell-disable-after-change):
824 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
825
826 2013-09-18 Alan Mackenzie <acm@muc.de>
827
828 Fix fontification of type when followed by "const".
829 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
830 "known" types from fontification.
831
832 2013-09-18 Glenn Morris <rgm@gnu.org>
833
834 * emacs-lisp/chart.el (x-display-color-cells): Declare.
835 (chart-face-list): Drop Emacsen without display-color-p.
836
837 * net/eww.el (libxml-parse-html-region): Declare.
838 (eww-display-html): Explicit error if no libxml2 support.
839
840 * doc-view.el (doc-view-mode): Silence --without-x compilation.
841
842 * image.el (image-type-from-buffer, image-multi-frame-p):
843 Remove --without-x warning/error.
844
845 * mouse.el (mouse-yank-primary):
846 * term.el (term-mouse-paste):
847 Reorder to silence --without-x compilation.
848
849 * mpc.el (doc-view-mode): Silence --without-x compilation.
850
851 * mail/rmailmm.el (rmail-mime-set-bulk-data):
852 Silence --without-x compilation.
853
854 * progmodes/gud.el (gud-find-file, gud-mode):
855 Silence --without-x compilation.
856 (tooltip-mode): Declare.
857
858 * wdired.el (dired-backup-overwrite): Remove declaration.
859 (wdired-mode-map): Add doc string.
860
861 * custom.el (x-get-resource): Declare.
862
863 * eshell/em-glob.el (ange-cache):
864 * eshell/em-unix.el (ange-cache): Declare.
865
866 * faces.el (x-display-list, x-open-connection, x-get-resource):
867 Declare.
868
869 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
870 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
871 Declare.
872
873 * frame.el (x-display-grayscale-p, x-display-name): Declare.
874
875 * net/gnutls.el (gnutls-log-level): Declare.
876
877 * net/shr.el (image-size, image-animate): Declare.
878
879 * simple.el (font-info): Declare.
880
881 * subr.el (x-popup-dialog): Declare.
882
883 * term/common-win.el (x-select-enable-primary)
884 (x-last-selected-text-primary, x-last-selected-text-clipboard):
885 Declare.
886
887 * term/ns-win.el (x-handle-args): Declare.
888
889 * term/x-win.el (x-select-enable-clipboard): Declare.
890
891 * term/w32-win.el (create-default-fontset): Declare.
892
893 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
894 Declare.
895
896 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
897 (fit-frame-to-buffer): Explicit error if --without-x.
898 (mouse-autoselect-window-select): Silence compiler.
899
900 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
901
902 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
903 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
904 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
905 * eshell/esh-util.el (eshell-sublist):
906 Remove unused local variables.
907
908 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
909
910 * textmodes/two-column.el: Make 2C-split work for --without-x.
911 (scroll-bar-columns): Autoload.
912 (top-level): Require fringe when compiling.
913
914 2013-09-18 Leo Liu <sdl.web@gmail.com>
915
916 * subr.el (add-hook): Robustify to handle closure as well.
917
918 2013-09-17 Glenn Morris <rgm@gnu.org>
919
920 * simple.el (messages-buffer-mode-map): Unbind "g".
921
922 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
923
924 * help-mode.el (help-mode-finish): Use derived-mode-p.
925 Remove obsolete highlighting.
926
927 * play/life.el (life-mode): Use define-derived-mode. Derive from
928 special-mode.
929 (life): Let-bind inhibit-read-only.
930 (life-setup): Avoid `setq'. Use `life-mode'.
931
932 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
933 which should not be needed any more.
934 (package-menu-refresh, package-menu-describe-package): Use user-error.
935
936 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
937 (eshell-post-rewrite-command-hook): Make obsolete.
938 (eshell-parse-command): Simplify.
939 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
940 (eshell--cmd): Declare.
941 (eshell-parse-pipeline): Remove unused var `final-p'.
942 Pass a dynvar to eshell-post-rewrite-command-hook.
943 Implement the new eshell-post-rewrite-command-function.
944 (eshell-invoke-directly): Remove unused arg `input'.
945 * eshell/esh-io.el (eshell-io-initialize):
946 Use eshell-post-rewrite-command-function (bug#15399).
947 (eshell--apply-redirections): Rename from eshell-apply-redirections;
948 adjust to new calling convention.
949 (eshell-create-handles): Rename args to avoid clashing with dynvar
950 `standard-output'.
951
952 2013-09-17 Glenn Morris <rgm@gnu.org>
953
954 * simple.el (messages-buffer-mode): New major mode.
955 (messages-buffer): New function.
956 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
957 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
958 (ert-run-test): Use `messages-buffer' function.
959 (ert--force-message-log-buffer-truncation): Ignore read-only.
960 * help.el (view-echo-area-messages): Use `messages-buffer' function.
961 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
962
963 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
964
965 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
966
967 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15329).
968
969 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
970
971 * icomplete.el (icomplete-in-buffer): New var.
972 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
973 vars and replace them with functions.
974 (icomplete-minibuffer-setup): Adjust accordingly.
975 (icomplete--completion-table, icomplete--completion-predicate)
976 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
977 New functions.
978 (icomplete-forward-completions, icomplete-backward-completions)
979 (icomplete-simple-completing-p, icomplete-exhibit)
980 (icomplete-completions): Use them.
981 (icomplete--in-region-buffer): New var.
982 (icomplete--in-region-setup): New function.
983 (icomplete-mode): Use it.
984
985 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
986 (bug#15379).
987 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
988 return args and options.
989 (eshell-eval-using-options): Use the new return value of
990 eshell--do-opts to set the options's vars in their scope.
991 (eshell--set-option): Rename from eshell-set-option.
992 Add arg `opt-vals'.
993 (eshell--process-option): Rename from eshell-process-option.
994 Add arg `opt-vals'.
995 (eshell--process-args): Use an `opt-vals' alist to store the options's
996 values during their processing and return them additionally to the
997 remaining args.
998
999 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
1000
1001 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
1002 continuation character an operator, as far as indentation is
1003 concerned (Bug#15369).
1004
1005 2013-09-15 Martin Rudalics <rudalics@gmx.at>
1006
1007 * window.el (window--state-put-2): Don't process buffer state
1008 when buffer doesn't exist any more (Bug#15382).
1009
1010 2013-09-15 Glenn Morris <rgm@gnu.org>
1011
1012 * eshell/em-unix.el (eshell/rm):
1013 Make -f ignore missing files. (Bug#15373)
1014
1015 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
1016 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
1017 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
1018
1019 2013-09-14 Glenn Morris <rgm@gnu.org>
1020
1021 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
1022
1023 2013-09-13 Glenn Morris <rgm@gnu.org>
1024
1025 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
1026 (dired-guess-default): Make `file' available in the env. (Bug#15363)
1027
1028 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
1029
1030 * frame.el (x-focus-frame): Mark as declared in frame.c.
1031
1032 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
1033
1034 * ls-lisp.el: Use advice-add.
1035 (original-insert-directory): Remove.
1036 (ls-lisp--insert-directory): Rename from insert-directory; add
1037 `orig-fun' argument.
1038 (insert-directory): Advise.
1039
1040 2013-09-13 Eli Zaretskii <eliz@gnu.org>
1041
1042 * term.el (term-emulate-terminal): Decode the command string
1043 before passing it to term-command-hook. (Bug#15337)
1044
1045 2013-09-13 Glenn Morris <rgm@gnu.org>
1046
1047 * eshell/esh-util.el (ange-cache): Move declaration earlier.
1048
1049 * eshell/esh-ext.el (eshell-search-path): Declare.
1050
1051 * eshell/em-prompt.el (eshell/pwd): Autoload it.
1052 Otherwise an error occurs if eshell-dirs module not loaded.
1053
1054 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
1055
1056 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
1057
1058 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
1059 `tramp-check-proper-host'. Check for a valid method name.
1060
1061 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1062 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
1063 * net/tramp-sh.el (tramp-maybe-open-connection):
1064 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
1065
1066 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
1067 also for hash values.
1068
1069 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1070
1071 * term/ns-win.el (parameters): Don't declare as dynamic.
1072 (before-make-frame-hook): Don't add ineffective function.
1073
1074 * eshell/*.el: Use lexical-binding (bug#15231).
1075
1076 2013-09-12 Kenichi Handa <handa@gnu.org>
1077
1078 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
1079
1080 2013-09-12 Glenn Morris <rgm@gnu.org>
1081
1082 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
1083 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
1084
1085 * subr.el (do-after-load-evaluation): Also give compiler warnings
1086 when obsolete files are used (except by obsolete files).
1087
1088 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
1089 in the status output, assume `filename' is the first. (Bug#15322)
1090
1091 * vc/vc.el (vc-deduce-fileset): Doc fix.
1092
1093 * calc/calc-help.el (Info-goto-node):
1094 * progmodes/cperl-mode.el (Info-find-node):
1095 * vc/ediff.el (Info-goto-node): Update declarations.
1096
1097 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
1098
1099 * vc/vc-bzr.el (vc-compilation-mode): Declare.
1100 (vc-bzr-pull): Require vc-dispatcher.
1101 * vc/vc-git.el (vc-compilation-mode): Declare.
1102 (vc-git-pull): Require vc-dispatcher.
1103
1104 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
1105
1106 * progmodes/octave.el (help-button-action): Declare.
1107
1108 * shell.el (shell-directory-tracker): Output error as a message
1109 rather than just returning it as a string.
1110 (shell-process-pushd): Remove useless use of message.
1111
1112 * dframe.el (dframe-timer-fn):
1113 * files.el (dir-locals-read-from-file):
1114 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
1115 (mpc-format):
1116 * reveal.el (reveal-post-command):
1117 * saveplace.el (load-save-place-alist-from-file):
1118 * shell.el (shell-resync-dirs):
1119 * w32-common-fns.el (x-get-selection-value):
1120 * emacs-lisp/copyright.el (copyright-find-copyright):
1121 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
1122 * emulation/tpu-edt.el (tpu-copy-keyfile):
1123 * play/bubbles.el (bubbles--mark-neighbourhood):
1124 * progmodes/executable.el
1125 (executable-make-buffer-file-executable-if-script-p):
1126 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
1127
1128 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1129
1130 Cleanup Eshell to rely less on dynamic scoping.
1131 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
1132 last-value, and ext-command here. Bind `args' closer to `body'.
1133 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
1134 (eshell--args): Declare new dynamic var.
1135 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
1136 last-value, and ext-command. Pass `args' to `body'.
1137 (eshell-process-args): Bind eshell--args.
1138 (eshell-set-option): Use eshell--args.
1139 * eshell/eshell.el (eshell): Use derived-mode-p.
1140 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
1141 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
1142 (eshell-glob-function): Declare.
1143 * eshell/esh-util.el: Require cl-lib.
1144 (eshell-read-hosts-file): Avoid add-to-list.
1145 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
1146 `err'.
1147 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
1148 Declare.
1149 (eshell/diff): Remove unused var `err'.
1150 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
1151 `killflag'.
1152 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
1153 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
1154 first use.
1155 * eshell/em-glob.el (eshell-glob-matches, message-shown):
1156 Move declaration before first use.
1157 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
1158 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
1159 rely on cl-return.
1160
1161 2013-09-12 Glenn Morris <rgm@gnu.org>
1162
1163 * term/ns-win.el (global-map): Remove binding for ispell-next,
1164 deleted 1999-05-29. (Bug#15357)
1165
1166 2013-09-11 Glenn Morris <rgm@gnu.org>
1167
1168 * echistory.el (electric-command-history): Remove call to deleted func.
1169
1170 * play/landmark.el (landmark-mode): Fix typos.
1171
1172 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
1173 Check cvs-sort-ignore-file is bound.
1174
1175 * savehist.el: No need for cl when compiling on Emacs.
1176
1177 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
1178
1179 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
1180 (bug#15338).
1181 (eshell-self-insert-command, eshell-send-invisible):
1182 Remove unused argument.
1183 (eshell-handle-control-codes): Remove unused var `orig'.
1184 Avoid delete-backward-char.
1185
1186 * files.el (set-auto-mode): Simplify a bit further.
1187
1188 2013-09-11 Glenn Morris <rgm@gnu.org>
1189
1190 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
1191 (set-auto-mode): Don't regexp-quote elements.
1192 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
1193 * progmodes/cc-mode.el (interpreter-mode-alist):
1194 * progmodes/ruby-mode.el (interpreter-mode-alist):
1195 Revert previous change.
1196
1197 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
1198
1199 * play/snake.el (snake-mode):
1200 * play/mpuz.el (mpuz-mode):
1201 * play/landmark.el (lm-mode):
1202 * play/blackbox.el (blackbox-mode):
1203 * play/5x5.el (5x5-mode):
1204 * obsolete/options.el (Edit-options-mode):
1205 * net/quickurl.el (quickurl-list-mode):
1206 * net/newst-treeview.el (newsticker-treeview-mode):
1207 * mail/rmailsum.el (rmail-summary-mode):
1208 * mail/mspools.el (mspools-mode):
1209 * locate.el (locate-mode):
1210 * ibuffer.el (ibuffer-mode):
1211 * emulation/ws-mode.el (wordstar-mode):
1212 * emacs-lisp/debug.el (debugger-mode):
1213 * array.el (array-mode):
1214 * net/eudc.el (eudc-mode): Use define-derived-mode.
1215 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
1216 Move initialization into declaration.
1217 (mairix-searches-mode): Use define-derived-mode.
1218 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
1219 (eudc-edit-hotlist): Use dolist.
1220 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
1221 (Man-mode): Use define-derived-mode.
1222 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
1223 (Info-edit-mode): Use define-derived-mode.
1224 (Info-cease-edit): Use Info-mode.
1225 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
1226 into declaration.
1227 (eshell-mode): Use define-derived-mode.
1228 * chistory.el (command-history-mode-map): Rename from
1229 command-history-map.
1230 (command-history-mode): Use define-derived-mode.
1231 (Command-history-setup): Remove function.
1232 * calc/calc.el (calc-trail-mode-map): New var.
1233 (calc-trail-mode): Use define-derived-mode.
1234 (calc-trail-buffer): Set calc-main-buffer manually.
1235 * bookmark.el (bookmark-insert-annotation): New function.
1236 (bookmark-edit-annotation): Use it.
1237 (bookmark-edit-annotation-mode): Make it a proper major mode.
1238 (bookmark-send-edited-annotation): Use derived-mode-p.
1239 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
1240 closer to its ideal place. Use \' to match EOS.
1241
1242 * profiler.el (profiler-calltree-find): Use function-equal.
1243
1244 2013-09-10 Glenn Morris <rgm@gnu.org>
1245
1246 * files.el (interpreter-mode-alist): Convert to regexps.
1247 (set-auto-mode): Adapt for this. (Bug#15306)
1248 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
1249 Comment out unused variable.
1250 * progmodes/cc-mode.el (interpreter-mode-alist):
1251 * progmodes/python.el (interpreter-mode-alist):
1252 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
1253 * progmodes/sh-script.el (sh-set-shell):
1254 No longer use interpreter-mode-alist to get list of shells.
1255
1256 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
1257
1258 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
1259
1260 * simple.el: Use set-temporary-overlay-map for universal-argument.
1261 (universal-argument-map): Don't use default-bindings (bug#15317).
1262 Bind switch-frame explicitly. Replace universal-argument-minus with
1263 a conditional binding.
1264 (universal-argument-num-events, saved-overriding-map): Remove.
1265 (restore-overriding-map): Remove.
1266 (universal-argument--mode): Rename from save&set-overriding-map,
1267 and rewrite.
1268 (universal-argument, universal-argument-more, negative-argument)
1269 (digit-argument): Adjust accordingly.
1270 (universal-argument-minus): Remove.
1271 (universal-argument-other-key): Remove.
1272
1273 * subr.el (with-demoted-errors): Add `format' argument.
1274
1275 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
1276
1277 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
1278 `tramp-cleanup-connection'.
1279
1280 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
1281 parameters KEEP-DEBUG and KEEP-PASSWORD.
1282
1283 * net/tramp.el (tramp-file-name-handler):
1284 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1285 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
1286 (tramp-maybe-open-connection):
1287 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1288 Use `tramp-cleanup-connection'.
1289
1290 * net/tramp-sh.el (tramp-maybe-open-connection):
1291 Catch 'uname-changed inside the progress reporter.
1292
1293 2013-09-10 Glenn Morris <rgm@gnu.org>
1294
1295 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
1296
1297 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
1298 returns "alternate access method" in mode (eg "-rw-r--r--.").
1299
1300 2013-09-08 Glenn Morris <rgm@gnu.org>
1301
1302 * saveplace.el (load-save-place-alist-from-file):
1303 Demote errors. (Bug#15305)
1304
1305 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
1306
1307 Improve compatibility with older Emacsen, and XEmacs.
1308
1309 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
1310 only if it is bound. It isn't for XEmacs.
1311 (with-tramp-progress-reporter): Do not let-bind `result'.
1312 This yields to scoping errors in XEmacs.
1313 (tramp-handle-make-auto-save-file-name): New function, moved from
1314 tramp-sh.el.
1315
1316 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
1317 for `make-auto-save-file-name'.
1318 (tramp-adb--gnu-switches-to-ash):
1319 Use `tramp-compat-replace-regexp-in-string'.
1320
1321 * net/tramp-cache.el (tramp-cache-print): Call
1322 `substring-no-properties' only if it is bound. It isn't for XEmacs.
1323
1324 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
1325 bound. It isn't for XEmacs.
1326
1327 * net/tramp-compat.el (tramp-compat-copy-file):
1328 Catch `wrong-number-of-arguments' error.
1329 (tramp-compat-replace-regexp-in-string): New defun.
1330
1331 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
1332 for `make-auto-save-file-name'.
1333 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
1334 `copy-file'.
1335 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
1336 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
1337 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
1338
1339 * net/tramp-gw.el (tramp-gw-open-network-stream):
1340 Use `tramp-compat-replace-regexp-in-string'.
1341
1342 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
1343 Call `tramp-handle-make-auto-save-file-name'.
1344 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
1345 (tramp-sh-file-gvfs-monitor-dir-process-filter)
1346 (tramp-sh-file-inotifywait-process-filter):
1347 Use `tramp-compat-replace-regexp-in-string'.
1348 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
1349
1350 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
1351 for `make-auto-save-file-name'.
1352 (tramp-smb-handle-copy-directory):
1353 Call `tramp-compat-replace-regexp-in-string'.
1354 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
1355 (tramp-smb-handle-copy-file): Improve error message.
1356 (tramp-smb-handle-rename-file): Rename directly only in case
1357 `newname' does not exist yet. This is a restriction of smbclient.
1358 (tramp-smb-maybe-open-connection): Rerun the function only when
1359 `auth-sources' is non-nil.
1360
1361 2013-09-08 Kenichi Handa <handa@gnu.org>
1362
1363 * international/characters.el: Set category "^" (Combining) for
1364 more characters.
1365
1366 2013-09-07 Alan Mackenzie <acm@muc.de>
1367
1368 Correctly fontify Java class constructors.
1369 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
1370 in Java Mode.
1371 (c-recognize-typeless-decls): Set the Java value to t.
1372 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
1373 While handling a "(", add a check for, effectively, Java, and handle a
1374 "typeless" declaration there.
1375
1376 2013-09-07 Roland Winkler <winkler@gnu.org>
1377
1378 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
1379 field subtitle for entry type book.
1380
1381 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1382
1383 * minibuffer.el: Make minibuffer-complete call completion-in-region
1384 rather than other way around.
1385 (completion--some, completion-pcm--find-all-completions):
1386 Don't delay signals when debugging.
1387 (minibuffer-completion-contents): Beware fields within the
1388 minibuffer contents.
1389 (completion-all-sorted-completions): Use defvar-local.
1390 (completion--do-completion, completion--cache-all-sorted-completions)
1391 (completion-all-sorted-completions, minibuffer-force-complete):
1392 Add args `beg' and `end'.
1393 (completion--in-region-1): New fun, extracted from minibuffer-complete.
1394 (minibuffer-complete): Use completion-in-region.
1395 (completion-complete-and-exit): New fun, extracted from
1396 minibuffer-complete-and-exit.
1397 (minibuffer-complete-and-exit): Use it.
1398 (completion--complete-and-exit): Rename from
1399 minibuffer--complete-and-exit.
1400 (completion-in-region--single-word): New function, extracted from
1401 minibuffer-complete-word.
1402 (minibuffer-complete-word): Use it.
1403 (display-completion-list): Make `common-substring' argument obsolete.
1404 (completion--in-region): Call completion--in-region-1 instead of
1405 minibuffer-complete.
1406 (completion-help-at-point): Pass boundaries to
1407 minibuffer-completion-help as args rather than via an overlay.
1408 (completion-pcm--string->pattern): Use `any-delim'.
1409 (completion-pcm--optimize-pattern): New function.
1410 (completion-pcm--pattern->regex): Handle `any-delim'.
1411 * icomplete.el (icomplete-forward-completions)
1412 (icomplete-backward-completions, icomplete-completions):
1413 Adjust calls to completion-all-sorted-completions and
1414 completion--cache-all-sorted-completions.
1415 (icomplete-with-completion-tables): Default to t.
1416 * emacs-lisp/crm.el (crm--current-element): Rename from
1417 crm--select-current-element. Don't put an overlay but return the
1418 boundaries instead.
1419 (crm--completion-command): Take two new args to bind to the boundaries.
1420 (crm-completion-help): Adjust accordingly.
1421 (crm-complete): Use completion-in-region.
1422 (crm-complete-word): Use completion-in-region--single-word.
1423 (crm-complete-and-exit): Use completion-complete-and-exit.
1424
1425 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1426
1427 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
1428 than dynamically.
1429
1430 2013-09-06 Juri Linkov <juri@jurta.org>
1431
1432 * info.el (Info-display-images-node): When image file doesn't exist
1433 display text version of the image if it's provided in the Info file.
1434 Otherwise, display the location of missing image from SRC attribute.
1435 Add help-echo text property from ALT attribute. (Bug#15279)
1436
1437 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1438
1439 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
1440 (edit-abbrevs-mode): Use define-derived-mode.
1441
1442 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
1443 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
1444 that it's defined.
1445 (epa-key-list-mode, epa-key-mode, epa-info-mode):
1446 Use define-derived-mode.
1447
1448 * epg.el (epg-start-encrypt): Minor CSE simplification.
1449
1450 2013-09-06 William Xu <william.xwl@gmail.com>
1451
1452 * arc-mode.el: Add support for 7za (bug#15264).
1453 (archive-7z-program): New var.
1454 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
1455 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
1456 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
1457
1458 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
1459
1460 Remove URL syntax.
1461
1462 * net/tramp.el (tramp-syntax, tramp-prefix-format)
1463 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
1464 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
1465 (tramp-postfix-host-format, tramp-file-name-regexp)
1466 (tramp-completion-file-name-regexp)
1467 (tramp-completion-dissect-file-name)
1468 (tramp-handle-substitute-in-file-name): Remove 'url case.
1469 (tramp-file-name-regexp-url)
1470 (tramp-completion-file-name-regexp-url): Remove constants.
1471
1472 2013-09-06 Glenn Morris <rgm@gnu.org>
1473
1474 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
1475
1476 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
1477
1478 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
1479 keywords" below "here-doc beginnings" (Bug#15270).
1480
1481 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
1482
1483 * subr.el (pop): Use `car-safe'.
1484 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
1485 to detect unused `pop' return value.
1486
1487 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
1488 var `block-regexp'.
1489 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
1490 (python-fill-string): Remove unused var `marker'.
1491 (python-skeleton-add-menu-items): Remove unused var `items'.
1492
1493 * international/mule-cmds.el: Require CL.
1494 (find-coding-systems-for-charsets): Avoid add-to-list.
1495 (sanitize-coding-system-list): New function, extracted from
1496 select-safe-coding-system-interactively.
1497 (select-safe-coding-system-interactively): Use it.
1498 (read-input-method-name): Accept symbols for `default'.
1499
1500 * emacs-lisp/advice.el (defadvice): Add indent rule.
1501
1502 2013-09-05 Daniel Hackney <dan@haxney.org>
1503
1504 * dired-x.el:
1505 * net/ange-ftp.el:
1506 * net/browse-url.el:
1507 * net/dbus.el:
1508 * net/eudc.el:
1509 * net/eudcb-ldap.el:
1510 * net/eww.el:
1511 * net/imap.el:
1512 * printing.el:
1513 * vc/ediff-diff.el:
1514 * vc/ediff-init.el:
1515 * vc/ediff-merg.el:
1516 * vc/ediff-mult.el:
1517 * vc/ediff-util.el:
1518 * vc/ediff-wind.el:
1519 * vc/ediff.el:
1520 * vc/emerge.el:
1521 * vc/pcvs.el:
1522 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
1523 byte compiler. Remove some unused let-bound variables.
1524
1525 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
1526
1527 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
1528 a "ref-cell", since it gets better optimized (bug#14883).
1529
1530 2013-09-05 Glenn Morris <rgm@gnu.org>
1531
1532 * progmodes/cc-awk.el (c-forward-sws): Declare.
1533
1534 2013-09-04 Glenn Morris <rgm@gnu.org>
1535
1536 * generic-x.el [rul-generic-mode]: Require cc-mode.
1537 (c++-mode-syntax-table): Declare.
1538 (rul-generic-mode-syntax-table): Init in the defvar.
1539
1540 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
1541
1542 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
1543 (vc-do-command, vc-set-async-update):
1544 * vc/vc-mtn.el (vc-mtn-dir-status):
1545 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
1546 (vc-hg-pull, vc-hg-merge-branch):
1547 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
1548 (vc-git-merge-branch):
1549 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
1550 (vc-cvs-dir-status-files):
1551 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
1552 (vc-bzr-dir-status-files):
1553 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
1554 * vc/vc-annotate.el: Use lexical-binding.
1555 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
1556 (vc-sentinel-movepoint): Declare.
1557 (vc-annotate): Don't use `goto-line'.
1558 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
1559 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
1560 (vc-sentinel-movepoint): Declare.
1561 * vc/vc-svn.el: Use lexical-binding.
1562 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
1563 * vc/vc-sccs.el:
1564 * vc/vc-rcs.el: Use lexical-binding.
1565
1566 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
1567 `deleted'. Don't drop errors silently.
1568
1569 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
1570
1571 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
1572
1573 * vc/vc.el (vc-ignore): Rewrite.
1574 (vc-default-ignore): New function.
1575 (vc-default-ignore-completion-table): Use find-ignore-file.
1576
1577 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
1578 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
1579 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
1580 Remove. Most code moved to vc.el.
1581
1582 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
1583
1584 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
1585 * net/tramp-smb.el (tramp-smb-get-file-entries):
1586 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
1587 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
1588
1589 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
1590 Update call to it.
1591 (eww-change-select): Remove unused var `properties'.
1592 (eww-make-unique-file-name): Remove unused var `base'.
1593
1594 * finder.el (finder-compile-keywords): Don't mess with windows.
1595
1596 * calculator.el (calculator-funcall): Fix typo in last change.
1597
1598 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
1599
1600 * emacs-lisp/package.el (package-activate-1): Don't let a missing
1601 <pkg>-autoloads.el file stop us.
1602
1603 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
1604 warnings, and factor out common code.
1605
1606 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
1607
1608 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
1609 two-character operators and whether the character preceding them
1610 changes their meaning (Bug#15208).
1611
1612 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
1613
1614 Format code sent to Python shell for robustness.
1615 * progmodes/python.el (python-shell-buffer-substring):
1616 New function.
1617 (python-shell-send-region, python-shell-send-buffer): Use it.
1618
1619 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
1620
1621 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
1622 * net/tramp.el (tramp-user-error): ... here.
1623 (tramp-find-method, tramp-check-proper-host)
1624 (tramp-dissect-file-name, tramp-debug-message)
1625 (tramp-handle-shell-command):
1626 * net/tramp-adb.el (tramp-adb-handle-shell-command):
1627 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
1628
1629 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
1630
1631 2013-09-02 Martin Rudalics <rudalics@gmx.at>
1632
1633 * avoid.el (mouse-avoidance-point-position)
1634 (mouse-avoidance-too-close-p): Handle case where posn-at-point
1635 returns nil.
1636
1637 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
1638
1639 * progmodes/python.el (python-shell-completion-get-completions):
1640 Drop use of deleted `comint-last-prompt-overlay'.
1641 (python-nav-if-name-main): New command.
1642
1643 2013-09-01 Glenn Morris <rgm@gnu.org>
1644
1645 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
1646 Avoid leading space in $wins. Otherwise the sed command used by
1647 eg compile-main ends up containing "/*.el". (Bug#15170)
1648
1649 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
1650
1651 2013-08-30 Glenn Morris <rgm@gnu.org>
1652
1653 * emacs-lisp/bytecomp.el (byte-recompile-directory):
1654 Fix is-this-a-directory logic. (Bug#15220)
1655
1656 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
1657
1658 * textmodes/css-mode.el: Use SMIE.
1659 (css-smie-grammar): New var.
1660 (css-smie--forward-token, css-smie--backward-token)
1661 (css-smie-rules): New functions.
1662 (css-mode): Use them.
1663 (css-navigation-syntax-table): Remove var.
1664 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
1665 (css-indent-calculate, css-indent-line): Remove functions.
1666
1667 Misc changes to reduce use of `(lambda...); and other cleanups.
1668 * cus-edit.el: Use lexical-binding.
1669 (customize-push-and-save, customize-apropos)
1670 (custom-buffer-create-internal): Use closures.
1671 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
1672 * progmodes/ada-xref.el: Use setq.
1673 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
1674 * dframe.el: Use lexical-binding.
1675 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
1676 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
1677 * descr-text.el: Use lexical-binding.
1678 (describe-text-widget, describe-text-sexp, describe-property-list):
1679 Use closures.
1680 * comint.el (comint-history-isearch-push-state): Use a closure.
1681 * calculator.el: Use lexical-binding.
1682 (calculator-number-to-string): Make it work with lexical-binding.
1683 (calculator-funcall): Same and use cl-letf.
1684
1685 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
1686 (lisp--company-doc-string, lisp--company-location): New functions.
1687 (lisp-completion-at-point): Use them to improve Company support.
1688
1689 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
1690 params of lambda expressions.
1691 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
1692 (ruby-smie--opening-pipe-p): New function.
1693 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
1694 symbols and matched |...| for formal params.
1695 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
1696 from being treated as hanging. Handle "rescue".
1697
1698 2013-08-29 Glenn Morris <rgm@gnu.org>
1699
1700 * progmodes/cc-engine.el (c-pull-open-brace):
1701 Move definition before use.
1702
1703 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
1704
1705 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
1706 are immutable. Don't use `unsafe' any more.
1707 (cl--defsubst-expand): Don't substitute at the same time as keeping
1708 a residual unused let-binding. Don't use `unsafe' any more.
1709
1710 2013-08-29 Glenn Morris <rgm@gnu.org>
1711
1712 * calendar/cal-china.el (calendar-chinese-year-cache):
1713 Recenter on 2015.
1714
1715 * nxml/nxml-util.el (nxml-debug-clear-inside):
1716 Use cl-loop rather than loop.
1717
1718 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
1719
1720 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
1721
1722 2013-08-28 Glenn Morris <rgm@gnu.org>
1723
1724 * progmodes/antlr-mode.el: No need to require cc-mode twice.
1725
1726 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
1727
1728 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
1729
1730 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
1731
1732 * simple.el (repeat-complex-command--called-interactively-skip):
1733 New function.
1734 (repeat-complex-command): Use it (bug#14136).
1735
1736 * progmodes/cc-mode.el: Minor cleanup of var declarations.
1737 (c-define-abbrev-table): Add `doc' argument.
1738 (c-mode-abbrev-table, c++-mode-abbrev-table)
1739 (objc-mode-abbrev-table, java-mode-abbrev-table)
1740 (idl-mode-abbrev-table, pike-mode-abbrev-table)
1741 (awk-mode-abbrev-table): Use it.
1742 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
1743 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
1744 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
1745 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
1746 Move initialization into the declaration; and remove any
1747 autoload cookie.
1748
1749 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
1750 and dynamic let binding.
1751
1752 * vc/smerge-mode.el: Remove redundant :group args.
1753
1754 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
1755 to load-path.
1756
1757 2013-08-28 Juri Linkov <juri@jurta.org>
1758
1759 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
1760 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
1761 (isearch-other-meta-char): Handle an undefined shifted printing
1762 character by downshifting it. (Bug#15200)
1763
1764 2013-08-28 Juri Linkov <juri@jurta.org>
1765
1766 * isearch.el (isearch-search): Change regexp error message for
1767 non-regexp searches. (Bug#15166)
1768
1769 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
1770
1771 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
1772 for portability to hosts where /bin/sh has problems.
1773
1774 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
1775
1776 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
1777
1778 2013-08-27 Juri Linkov <juri@jurta.org>
1779
1780 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
1781 in the keyboard macro. (Bug#15126)
1782
1783 2013-08-27 Juri Linkov <juri@jurta.org>
1784
1785 * isearch.el (isearch-quote-char): Comment out converting unibyte
1786 to multibyte, thus syncing with its `quoted-insert' counterpart.
1787 (Bug#15166)
1788
1789 2013-08-27 Martin Rudalics <rudalics@gmx.at>
1790
1791 * window.el (display-buffer-use-some-window): Add missing
1792 argument in call of get-largest-window (Bug#15185).
1793 Reported by Stephen Leake.
1794
1795 2013-08-27 Glenn Morris <rgm@gnu.org>
1796
1797 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
1798
1799 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
1800
1801 * progmodes/python.el (python-font-lock-keywords): Don't return nil
1802 from a matcher-function unless there's no more matches (bug#15161).
1803
1804 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
1805
1806 * minibuffer.el: Revert change from 2013-08-20.
1807
1808 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
1809 with text property `tramp-default', if appropriate.
1810 (tramp-check-proper-host): New defun.
1811 (tramp-dissect-file-name): Do not check hostname. Revert change
1812 of 2013-03-18.
1813 (tramp-backtrace): Make VEC-OR-PROC optional.
1814
1815 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1816 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
1817 * net/tramp-sh.el (tramp-maybe-open-connection):
1818 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1819 Apply `tramp-check-proper-host'.
1820
1821 2013-08-26 Tassilo Horn <tsdh@gnu.org>
1822
1823 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
1824 lambda expression in order to have `describe-variable' display it.
1825
1826 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
1827
1828 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
1829 BUF can be optional. (Bug#15186)
1830
1831 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
1832
1833 * progmodes/flymake.el (flymake-get-real-file-name-function):
1834 Fix broken customization. (Bug#15184)
1835
1836 2013-08-25 Alan Mackenzie <acm@muc.de>
1837
1838 Improve indentation of bracelists defined by macros (without "=").
1839
1840 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
1841 expansion begins with "{", regard it as bracelist when it doesn't
1842 contain a ";".
1843
1844 Parse C++ inher-intro when there's a template split over 2 lines.
1845
1846 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
1847 rigorously the search for "class" etc. followed by ":".
1848
1849 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
1850 random languages a regexp which never matches rather than nil.
1851
1852 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
1853
1854 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
1855 (c-awk-regexp-one-line-possibly-open-char-list-re)
1856 (c-awk-one-line-possibly-open-regexp-re)
1857 (c-awk-one-line-non-syn-ws*-re): Remove.
1858 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
1859 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
1860 (c-awk-space*-unclosed-regexp-/-re): New constants.
1861 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
1862 aren't regexp delimiters.
1863
1864 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
1865 handling for a rare situation in AWK Mode involving unterminated
1866 strings/regexps.
1867
1868 2013-08-23 Glenn Morris <rgm@gnu.org>
1869
1870 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
1871
1872 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
1873
1874 * files.el (create-file-buffer): If the result would begin with
1875 spaces, prepend a "|" instead of removing them. (Bug#15162)
1876
1877 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
1878
1879 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
1880 text-properties (bug#15155).
1881
1882 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
1883 exist any more.
1884 (calc-keypad-redraw): Remove unused var `pad'.
1885 (calc-keypad-press): Remove unused var `menu'.
1886
1887 2013-08-23 Martin Rudalics <rudalics@gmx.at>
1888
1889 * window.el (display-buffer-pop-up-frame):
1890 Call pop-up-frame-function with BUFFER current so `make-frame' will
1891 use it as the new frame's buffer (Bug#15133).
1892
1893 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
1894
1895 * calendar/timeclock.el: Minor cleanups.
1896 (timeclock-ask-before-exiting, timeclock-use-display-time):
1897 Use `symbol'.
1898 (timeclock-modeline-display): Define as alias before the
1899 actual definition.
1900 (timeclock-mode-line-display): Use define-minor-mode.
1901 (timeclock-day-list-template): Make it a function, add an argument.
1902 (timeclock-day-list-required, timeclock-day-list-length)
1903 (timeclock-day-list-debt, timeclock-day-list-span)
1904 (timeclock-day-list-break): Adjust calls accordingly.
1905
1906 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
1907
1908 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
1909 Use read--expression so that completion works again.
1910
1911 2013-08-21 Sam Steingold <sds@gnu.org>
1912
1913 Add rudimentary inferior shell interaction
1914 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
1915 (sh-set-shell): Reset it.
1916 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
1917 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
1918
1919 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
1920
1921 * align.el: Use lexical-binding.
1922 (align-region): Simplify accordingly.
1923
1924 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
1925
1926 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
1927
1928 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
1929 `non-essential' up.
1930
1931 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
1932
1933 * net/tramp.el:
1934 * net/tramp-adb.el:
1935 * net/tramp-cmds.el:
1936 * net/tramp-ftp.el:
1937 * net/tramp-gvfs.el:
1938 * net/tramp-gw.el:
1939 * net/tramp-sh.el: Don't wrap external variable declarations by
1940 `eval-when-compile'.
1941
1942 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
1943
1944 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
1945 now that Emacs supports ImageMagick animations.
1946
1947 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
1948
1949 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
1950 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
1951
1952 2013-08-16 Martin Rudalics <rudalics@gmx.at>
1953
1954 * window.el (mouse-autoselect-window-select): Do autoselect when
1955 mouse pointer is on margin.
1956
1957 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
1958
1959 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
1960
1961 2013-08-16 Glenn Morris <rgm@gnu.org>
1962
1963 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
1964 Handle "Remote Directory" response of some clients. (Bug#15058)
1965
1966 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
1967 Tweak warning. (Bug#14926)
1968
1969 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
1970 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
1971
1972 * image-mode.el (image-mode-map): Add menu items to reverse,
1973 increase, decrease, reset animation speed.
1974 (image--set-speed, image-increase-speed, image-decrease-speed)
1975 (image-reverse-speed, image-reset-speed): New functions.
1976 (image-mode-map): Add bindings for speed commands.
1977
1978 * image.el (image-animate-get-speed, image-animate-set-speed):
1979 New functions.
1980 (image-animate-timeout): Respect image :speed property.
1981
1982 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
1983
1984 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
1985 previous line (bug#15101).
1986 (debugger-eval-expression, debugger-record-expression):
1987 Use read--expression (bug#15102).
1988
1989 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
1990
1991 Remove byte compiler warnings, visible when compiling with
1992 `byte-compile-force-lexical-warnings' set to t.
1993
1994 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
1995 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
1996 (tramp-handle-unhandled-file-name-directory)
1997 (tramp-handle-file-notify-add-watch, tramp-action-login)
1998 (tramp-action-succeed, tramp-action-permission-denied)
1999 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
2000 arguments with "_".
2001
2002 * net/tramp-adb.el (tramp-adb-parse-device-names)
2003 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
2004 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
2005 (tramp-adb-handle-file-truename): Remove unused arguments.
2006
2007 * net/tramp-cache.el (tramp-flush-directory-property)
2008 (tramp-flush-connection-property, tramp-list-connections)
2009 (tramp-parse-connection-properties): Prefix unused arguments with "_".
2010
2011 * net/tramp-compat.el (tramp-compat-make-temp-file):
2012 Rename FILENAME to F.
2013
2014 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
2015 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
2016 (tramp-zeroconf-parse-workstation-device-names)
2017 (tramp-zeroconf-parse-webdav-device-names)
2018 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
2019
2020 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
2021 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
2022
2023 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
2024 arguments.
2025 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
2026 (tramp-sh-handle-insert-file-contents-literally)
2027 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
2028 with "_".
2029 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
2030 Remove unused variables.
2031
2032 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
2033 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
2034 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
2035
2036 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
2037 Make them a defconst.
2038 (tramp-uuencode-region): Remove unused variable.
2039
2040 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
2041
2042 * frameset.el (frameset--prop-setter): New function.
2043 (frameset-prop): Add gv-setter declaration.
2044 (frameset-filter-minibuffer): Deal with the case that the minibuffer
2045 parameter was already set in FILTERED. Doc fix.
2046 (frameset--record-minibuffer-relationships): Allow saving a
2047 minibufferless frame without its corresponding minibuffer frame.
2048 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
2049 frame, if the frame id matches.
2050 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
2051 frames before orphaned ones.
2052 (frameset-restore): Warn about orphaned windows, instead of error out.
2053
2054 2013-08-14 Martin Rudalics <rudalics@gmx.at>
2055
2056 * window.el (window-make-atom): Don't overwrite parameter
2057 already present.
2058 (display-buffer-in-atom-window): Handle special case where we
2059 split an already atomic window.
2060 (window--major-non-side-window, display-buffer-in-side-window)
2061 (window--side-check): Ignore minibuffer window when walking
2062 window tree.
2063 (window-deletable-p): Return 'frame only if no other frame uses
2064 our minibuffer window.
2065 (record-window-buffer): Run buffer-list-update-hook.
2066 (split-window): Make sure window--check-frame won't destroy an
2067 existing atomic window in case the new window gets nested
2068 inside.
2069 (display-buffer-at-bottom): Ignore minibuffer window when
2070 walking window tree. Don't split a side window.
2071 (pop-to-buffer): Don't set-buffer here, the select-window call
2072 should do that.
2073 (mouse-autoselect-window-select): Autoselect only if we are in the
2074 text portion of the window.
2075
2076 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
2077
2078 * net/shr.el (shr-parse-image-data): New function to grab both the
2079 data itself and the Content-Type.
2080 (shr-put-image): Use it.
2081
2082 * net/eww.el (eww-display-image): Ditto.
2083
2084 * image.el (image-content-type-suffixes): New variable.
2085
2086 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
2087
2088 * progmodes/python.el (python-imenu--build-tree)
2089 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
2090
2091 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
2092
2093 * simple.el (backward-word): Mention the optional argument.
2094
2095 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
2096
2097 * frameset.el (frameset--make): Rename constructor from make-frameset.
2098 (frameset-p, frameset-valid-p): Don't autoload.
2099 (frameset-valid-p): Use normal accessors.
2100
2101 2013-08-13 Glenn Morris <rgm@gnu.org>
2102
2103 * progmodes/compile.el (compile-command): Tweak example in doc.
2104 * obsolete/scribe.el (scribe-mode):
2105 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
2106
2107 * mail/feedmail.el (feedmail-confirm-outgoing)
2108 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
2109
2110 * cus-start.el (truncate-partial-width-windows): Fix type.
2111
2112 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
2113
2114 * net/shr.el (shr-table-horizontal-line): Fix custom type.
2115
2116 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
2117
2118 * emacs-lisp/timer.el (timer--time-setter): New function.
2119 (timer--time): Use it as gv-setter.
2120
2121 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
2122 setter is not a symbol.
2123
2124 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
2125
2126 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
2127 if sending fails. This makes debugging easier.
2128
2129 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
2130
2131 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
2132 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
2133 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
2134
2135 2013-08-12 Eli Zaretskii <eliz@gnu.org>
2136
2137 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
2138
2139 2013-08-12 Glenn Morris <rgm@gnu.org>
2140
2141 * format.el (format-annotate-function):
2142 Handle read-only text properties in the source. (Bug#14887)
2143
2144 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2145
2146 * net/eww.el (eww-display-html): Ignore coding system errors.
2147 One web site uses "utf-8lias" as the coding system.
2148
2149 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
2150
2151 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
2152
2153 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
2154
2155 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
2156 (tutorial--detailed-help): Remove unused local variables.
2157 (tutorial--save-tutorial-to): Use ignore-errors.
2158 (help-with-tutorial): Use looking-at-p.
2159
2160 * view.el (view-buffer-other-window, view-buffer-other-frame):
2161 Mark unused arguments.
2162
2163 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
2164 (woman-select-symbol-fonts, woman, woman-find-file)
2165 (woman-insert-file-contents, woman-non-underline-faces):
2166 Use string-match-p.
2167 (woman1-unquote): Move declaration.
2168
2169 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
2170 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
2171 argument. Remove unused local variable.
2172 (xml-parse-elem-type): Use string-match-p.
2173 (xml-substitute-numeric-entities): Use ignore-errors.
2174
2175 * calculator.el (calculator): Mark unused argument.
2176 (calculator-paste, calculator-quit, calculator-integer-p):
2177 Use ignore-errors.
2178 (calculator-string-to-number, calculator-decimal, calculator-exp)
2179 (calculator-op-or-exp): Use string-match-p.
2180
2181 * dired.el (dired-buffer-more-recently-used-p): Declare.
2182 (dired-insert-set-properties, dired-insert-old-subdirs):
2183 Use ignore-errors.
2184
2185 * dired-aux.el (dired-compress): Use ignore-errors.
2186 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
2187 (dired-do-async-shell-command, dired-do-shell-command)
2188 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
2189 (dired-insert-subdir-validate): Use string-match-p.
2190 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
2191 (dired-add-entry): Use string-match-p, looking-at-p.
2192 (dired-insert-subdir-newpos): Remove unused local variable.
2193
2194 * filenotify.el (file-notify-callback): Remove unused local variable.
2195
2196 * filesets.el (filesets-error): Mark unused argument.
2197 (filesets-which-command-p, filesets-filter-dir-names)
2198 (filesets-directory-files, filesets-get-external-viewer)
2199 (filesets-ingroup-get-data): Use string-match-p.
2200
2201 * find-file.el (ff-other-file-name, ff-other-file-name)
2202 (ff-find-the-other-file, ff-cc-hh-converter):
2203 Remove unused local variables.
2204 (ff-get-file-name): Use string-match-p.
2205 (ff-all-dirs-under): Use ignore-errors.
2206
2207 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
2208 (follow-select-if-visible): Remove unused local variable.
2209
2210 * forms.el (read-file-filter): Move declaration.
2211 (forms--make-format, forms--make-parser, forms-insert-record):
2212 Quote function with #'.
2213 (forms--update): Use string-match-p. Quote function with #'.
2214
2215 * help-mode.el (help-dir-local-var-def): Mark unused argument.
2216 (help-make-xrefs): Use looking-at-p.
2217 (help-xref-on-pp): Use looking-at-p, ignore-errors.
2218
2219 * ibuffer.el (ibuffer-ext-visible-p): Declare.
2220 (ibuffer-confirm-operation-on): Use string-match-p.
2221
2222 * msb.el (msb-item-handler, msb-dired-item-handler):
2223 Mark unused arguments.
2224
2225 * ses.el (ses-decode-cell-symbol)
2226 (ses-kill-override): Remove unused local variable.
2227 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
2228 (ses-load): Use ignore-errors, looking-at-p.
2229 (ses-jump-safe): Use ignore-errors.
2230 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
2231
2232 * tabify.el (untabify, tabify): Mark unused arguments.
2233
2234 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
2235 Mark unused argument.
2236 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
2237 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
2238
2239 * emacs-lisp/timer.el (timer--time): Define setter with
2240 gv-define-setter to avoid deprecation warning.
2241
2242 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
2243 (*record-cmpl-statistics-p*): Remove (was commented out).
2244 (cmpl-statistics-block): Remove (body was commented out).
2245 All callers changed.
2246 (add-completions-from-buffer, load-completions-from-file):
2247 Remove unused variables.
2248
2249 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
2250
2251 * filecache.el (file-cache-delete-file-list):
2252 Print message only when told so.
2253 (file-cache-files-matching): Use #' in mapconcat argument.
2254
2255 * ffap.el (ffap-url-at-point): Fix reference to variable
2256 thing-at-point-default-mail-uri-scheme.
2257
2258 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
2259
2260 * subr.el (define-error): New function.
2261 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
2262 error-file-not-found and define with define-error.
2263 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
2264 and define with define-error.
2265 * userlock.el (file-locked, file-supersession):
2266 * simple.el (mark-inactive):
2267 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
2268 * progmodes/ada-mode.el (ada-mode-errors):
2269 * play/life.el (life-extinct):
2270 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
2271 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
2272 * nxml/rng-util.el (rng-error):
2273 * nxml/rng-uri.el (rng-uri-error):
2274 * nxml/rng-match.el (rng-compile-error):
2275 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
2276 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
2277 * nxml/nxml-rap.el (nxml-scan-error):
2278 * nxml/nxml-outln.el (nxml-outline-error):
2279 * net/soap-client.el (soap-error):
2280 * net/gnutls.el (gnutls-error):
2281 * net/ange-ftp.el (ftp-error):
2282 * mpc.el (mpc-proc-error):
2283 * json.el (json-error, json-readtable-error, json-unknown-keyword)
2284 (json-number-format, json-string-escape, json-string-format)
2285 (json-key-format, json-object-format):
2286 * jka-compr.el (compression-error):
2287 * international/quail.el (quail-error):
2288 * international/kkc.el (kkc-error):
2289 * emacs-lisp/ert.el (ert-test-failed):
2290 * calc/calc.el (calc-error, inexact-result, math-overflow)
2291 (math-underflow):
2292 * bookmark.el (bookmark-error-no-filename):
2293 * epg.el (epg-error): Define with define-error.
2294
2295 * time.el (display-time-event-handler)
2296 (display-time-next-load-average): Don't call sit-for since it seems
2297 unnecessary (bug#15045).
2298
2299 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
2300 Use #' instead of ' to quote functions.
2301 (checkdoc-output-mode): Use setq-local.
2302 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
2303 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
2304 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
2305 (checkdoc-ispell, checkdoc-ispell-current-buffer)
2306 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
2307 (checkdoc-ispell-message-text, checkdoc-ispell-start)
2308 (checkdoc-ispell-continue, checkdoc-ispell-comments)
2309 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
2310
2311 * ido.el (ido-completion-help): Fix up compiler warning.
2312
2313 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
2314
2315 * frameset.el (frameset-p): Add autoload cookie.
2316 (frameset--jump-to-register): New function, based on code moved from
2317 register.el.
2318 (frameset-to-register): Move from register.el. Adapt to `registerv'.
2319
2320 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
2321 (frameset-restore, frameset-save, frameset-session-filter-alist):
2322 Remove declarations.
2323 (register-alist): Doc fix.
2324 (frameset-to-register): Move to frameset.el.
2325 (jump-to-register, describe-register-1): Remove frameset-specific code.
2326
2327 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2328
2329 * allout-widgets.el (allout-widgets-pre-command-business)
2330 (allout-widgets-post-command-business)
2331 (allout-widgets-after-change-handler)
2332 (allout-decorate-item-and-context, allout-set-boundary-marker)
2333 (allout-body-modification-handler)
2334 (allout-graphics-modification-handler): Mark ignored arguments.
2335 (allout-widgets-post-command-business)
2336 (allout-widgets-exposure-change-processor)
2337 (allout-widgets-exposure-undo-processor)
2338 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
2339 (allout-parse-item-at-point, allout-decorate-item-guides)
2340 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
2341 * allout.el (epa-passphrase-callback-function): Declare.
2342 (allout-overlay-insert-in-front-handler)
2343 (allout-overlay-interior-modification-handler)
2344 (allout-isearch-end-handler, allout-chart-siblings)
2345 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
2346 (allout-yank-processing, allout-process-exposed)
2347 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
2348 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
2349 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
2350 (lisp-indent-defform): Mark ignored arguments.
2351 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
2352 (calculate-lisp-indent): Remove unused variables.
2353 * international/characters.el (indian-2-column, arabic-2-column)
2354 (tibetan): Mark ignored arguments.
2355 (use-cjk-char-width-table): Mark ignored arguments.
2356 Remove unused variables.
2357 * international/fontset.el (build-default-fontset-data)
2358 (x-compose-font-name, create-fontset-from-fontset-spec):
2359 Mark ignored arguments.
2360 (fontset-plain-name): Remove unused variables.
2361 * international/mule.el (charset-id, charset-bytes, generic-char-p)
2362 (keyboard-coding-system): Mark ignored arguments.
2363 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
2364 * help.el (resize-temp-buffer-window):
2365 * window.el (display-buffer-in-major-side-window)
2366 (display-buffer-in-side-window, display-buffer-in-previous-window):
2367 Remove unused variables.
2368 * isearch.el (isearch-forward-symbol):
2369 * version.el (emacs-bzr-version-bzr):
2370 * international/mule-cmds.el (current-language-environment):
2371 * term/common-win.el (x-handle-iconic, x-handle-geometry)
2372 (x-handle-display):
2373 * term/pc-win.el (x-list-fonts, x-display-planes)
2374 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
2375 (x-server-version, x-display-screens, x-display-mm-height)
2376 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
2377 (x-selection-owner-p, x-own-selection-internal)
2378 (x-disown-selection-internal, x-get-selection-internal)
2379 (msdos-initialize-window-system):
2380 * term/tty-colors.el (tty-color-alist, tty-color-clear):
2381 * term/x-win.el (x-handle-no-bitmap-icon):
2382 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
2383 (vc-default-find-file-hook, vc-default-extra-menu):
2384 Mark ignored arguments.
2385
2386 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2387
2388 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
2389 break-condition in the context of the debugged code (bug#12685).
2390
2391 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
2392
2393 * comint.el:
2394 Do not use an overlay to highlight the last prompt. (Bug#14744)
2395 (comint-mode): Make comint-last-prompt buffer local.
2396 (comint-last-prompt): New variable.
2397 (comint-last-prompt-overlay): Remove. Superseded by
2398 comint-last-prompt.
2399 (comint-snapshot-last-prompt, comint-output-filter):
2400 Use comint-last-prompt.
2401
2402 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2403
2404 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
2405 (frameset-save): Check validity of the resulting frameset.
2406
2407 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
2408
2409 * ido.el (ido-record-command): Add doc string.
2410
2411 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2412
2413 * frameset.el (frameset): Do not disable creation of the default
2414 frameset-p predicate. Doc fix.
2415 (frameset-valid-p): New function, copied from the old predicate-p.
2416 Add additional checks.
2417 (frameset-restore): Check with frameset-valid-p.
2418 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
2419 (frameset-name, frameset-description, frameset-properties)
2420 (frameset-states): Add docstring.
2421 (frameset-session-filter-alist, frameset-persistent-filter-alist)
2422 (frameset-filter-alist): Doc fixes.
2423
2424 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2425
2426 * frameset.el (frameset-p, frameset-prop): Doc fixes.
2427
2428 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2429
2430 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
2431 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
2432 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
2433 (byte-compile-normal-call): Remove obsolescence check.
2434
2435 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2436
2437 * frameset.el (frameset-restore): Doc fix.
2438
2439 * register.el (frameset-frame-id, frameset-frame-with-id)
2440 (frameset-p, frameset-restore, frameset-save): Declare.
2441 (register-alist): Document framesets.
2442 (frameset-session-filter-alist): Declare.
2443 (frameset-to-register): New function.
2444 (jump-to-register): Implement jumping to framesets. Doc fix.
2445 (describe-register-1): Describe framesets.
2446
2447 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
2448
2449 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
2450
2451 * desktop.el (desktop-save-frameset): Use new frameset-save args.
2452 Use lexical-binding.
2453
2454 * frameset.el (frameset): Use type vector, not list (incompatible
2455 change). Do not declare a new constructor, use the default one.
2456 Upgrade suggested properties `app', `name' and `desc' to slots `app',
2457 `name' and `description', respectively, and add read-only slot
2458 `timestamp'. Doc fixes.
2459 (frameset-copy, frameset-persistent-filter-alist)
2460 (frameset-filter-alist, frameset-switch-to-gui-p)
2461 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
2462 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
2463 (frameset-filter-iconified, frameset-keep-original-display-p):
2464 Doc fixes.
2465 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
2466 Rename from frameset-filter-(save|restore)-param. All callers changed.
2467 Doc fix.
2468 (frameset-p): Adapt to change to vector and be more thorough.
2469 Change arg name to OBJECT. Doc fix.
2470 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
2471 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
2472 All callers changed.
2473 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
2474 All callers changed.
2475 (frameset--record-minibuffer-relationships): Rename from
2476 frameset--process-minibuffer-frames. All callers changed.
2477 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
2478 Use new default constructor (again). Doc fix.
2479 (frameset--find-frame-if): Rename from `frameset--find-frame.
2480 All callers changed.
2481 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
2482 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
2483 Doc fix.
2484 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
2485 PARAMETERS and WINDOW-STATE, respectively.
2486 (frameset-restore): Add new keyword argument PREDICATE.
2487 Reset frameset--target-display to nil. Doc fix.
2488
2489 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
2490
2491 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
2492 (bat-mode): Use it.
2493 (bat-mode-syntax-table): Mark \n as end-of-comment.
2494 (bat-font-lock-keywords): Remove comment rule.
2495
2496 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
2497 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
2498
2499 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
2500 (byte-compile-callargs-warn): Use `push'.
2501 (byte-compile-arglist-warn): Ignore higher-order "calls".
2502 (byte-compile-file-form-autoload): Use `pcase'.
2503 (byte-compile-function-form): If quoting a symbol, check that it exists.
2504
2505 2013-08-07 Eli Zaretskii <eliz@gnu.org>
2506
2507 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
2508 and add a few popular commands found in batch files.
2509 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
2510 (dos-mode): Doc fixes.
2511
2512 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
2513
2514 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
2515 (dos-mode): Use setq-local. Add space after "rem".
2516 (dos-mode-syntax-table): Don't use "w" for symbol chars.
2517 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
2518
2519 2013-08-07 Arni Magnusson <arnima@hafro.is>
2520
2521 * progmodes/dos.el: New file.
2522 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
2523 dos-mode.
2524
2525 2013-08-06 Glenn Morris <rgm@gnu.org>
2526
2527 * calendar/calendar.el: Add new faces, and day-header-array.
2528 (calendar-weekday-header, calendar-weekend-header)
2529 (calendar-month-header): New faces.
2530 (calendar-day-header-construct): New function.
2531 (calendar-day-header-width): Also :set calendar-day-header-array.
2532 (calendar-american-month-header, calendar-european-month-header)
2533 (calendar-iso-month-header): Use calendar- faces.
2534 (calendar-generate-month):
2535 Use calendar-day-header-array for day headers; apply faces to them.
2536 (calendar-mode): Check calendar-font-lock-keywords non-nil.
2537 (calendar-abbrev-construct): Add optional maxlen argument.
2538 (calendar-day-name-array): Doc fix.
2539 (calendar-day-name-array, calendar-abbrev-length)
2540 (calendar-day-abbrev-array):
2541 Also :set calendar-day-header-array, and maybe redraw.
2542 (calendar-day-header-array): New option. (Bug#15007)
2543 (calendar-font-lock-keywords): Set to nil and make obsolete.
2544 (calendar-day-name): Add option to use header array.
2545
2546 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
2547
2548 * net/shr.el (shr-render-td): Remove debugging.
2549 (shr-render-td): Make width computation consistent by defaulting
2550 all zero-width columns to 10 characters. This may not be optimal,
2551 but it's at least consistent.
2552 (shr-make-table-1): Redo last change to fix the real problem in
2553 colspan handling.
2554
2555 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2556
2557 * files.el (cache-long-line-scans):
2558 Make obsolete alias to `cache-long-scans'.
2559
2560 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
2561
2562 * frameset.el (frameset, frameset-filter-alist)
2563 (frameset-filter-params, frameset-save, frameset--reuse-frame)
2564 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
2565 (frameset-compute-pos): Rename from frameset--compute-pos,
2566 and add docstring.
2567 (frameset-move-onscreen): Use frameset-compute-pos.
2568 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
2569
2570 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
2571 Fix typos in docstrings.
2572
2573 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2574
2575 * frame.el (get-other-frame): Tiny cleanup.
2576
2577 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
2578
2579 * vc/vc.el (vc-default-ignore-completion-table):
2580 Silence byte-compiler warning.
2581
2582 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
2583 slot , which can indeed be nil.
2584 (frameset-live-filter-alist, frameset-persistent-filter-alist):
2585 Move entry for `left' from persistent to live filter alist.
2586 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
2587 Doc fixes.
2588 (frameset-filter-params): When restoring a frame, copy items added to
2589 `filtered', to avoid unwittingly modifying the original parameters.
2590 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
2591 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
2592
2593 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
2594 to use looking-at-p instead of looking-at. (Bug#15028)
2595
2596 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
2597
2598 Revert introduction of isearch-filter-predicates (bug#14714).
2599 Rely on add-function instead.
2600 * isearch.el (isearch-filter-predicates): Rename it back to
2601 isearch-filter-predicate.
2602 (isearch-message-prefix): Use advice-function-mapc and advice
2603 properties to get the isearch-message-prefix.
2604 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
2605 instead of run-hook-with-args-until-failure.
2606 (isearch-filter-visible): Not obsolete any more.
2607 * loadup.el: Preload nadvice.
2608 * replace.el (perform-replace): Revert to funcall
2609 instead of run-hook-with-args-until-failure.
2610 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
2611 * dired-aux.el (dired-isearch-filenames-mode): Rename from
2612 dired-isearch-filenames-toggle; make it into a proper minor mode.
2613 Use add/remove-function.
2614 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
2615 Call the minor-mode rather than add/remove-hook.
2616 (dired-isearch-filter-filenames):
2617 Remove isearch-message-prefix property.
2618 * info.el (Info--search-loop): New function, extracted from Info-search.
2619 Funcall isearch-filter-predicate instead of
2620 run-hook-with-args-until-failure isearch-filter-predicates.
2621 (Info-search): Use it.
2622 (Info-mode): Use isearch-filter-predicate instead of
2623 isearch-filter-predicates.
2624
2625 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
2626
2627 Do not call to `selected-window' where it is assumed by default.
2628 Affected functions are `window-minibuffer-p', `window-dedicated-p',
2629 `window-hscroll', `window-width', `window-height', `window-buffer',
2630 `window-frame', `window-start', `window-point', `next-window'
2631 and `window-display-table'.
2632 * abbrev.el (abbrev--default-expand):
2633 * bs.el (bs--show-with-configuration):
2634 * buff-menu.el (Buffer-menu-mouse-select):
2635 * calc/calc.el (calc):
2636 * calendar/calendar.el (calendar-generate-window):
2637 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
2638 (diary-make-entry):
2639 * comint.el (send-invisible, comint-dynamic-complete-filename)
2640 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
2641 * completion.el (complete):
2642 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
2643 * disp-table.el (describe-current-display-table):
2644 * doc-view.el (doc-view-insert-image):
2645 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
2646 * ehelp.el (with-electric-help):
2647 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2648 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
2649 * emacs-lisp/helper.el (Helper-help-scroller):
2650 * emulation/cua-base.el (cua--post-command-handler-1):
2651 * eshell/esh-mode.el (eshell-output-filter):
2652 * ffap.el (ffap-gnus-wrapper):
2653 * help-macro.el (make-help-screen):
2654 * hilit-chg.el (highlight-compare-buffers):
2655 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
2656 * hl-line.el (global-hl-line-highlight):
2657 * icomplete.el (icomplete-simple-completing-p):
2658 * isearch.el (isearch-done):
2659 * jit-lock.el (jit-lock-stealth-fontify):
2660 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
2661 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
2662 * mpc.el (mpc-tagbrowser, mpc):
2663 * net/rcirc.el (rcirc-any-buffer):
2664 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
2665 * play/landmark.el (landmark-max-width, landmark-max-height):
2666 * play/zone.el (zone):
2667 * progmodes/compile.el (compilation-goto-locus):
2668 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
2669 * progmodes/etags.el (find-tag-other-window):
2670 * progmodes/fortran.el (fortran-column-ruler):
2671 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
2672 * progmodes/verilog-mode.el (verilog-point-text):
2673 * reposition.el (reposition-window):
2674 * rot13.el (toggle-rot13-mode):
2675 * server.el (server-switch-buffer):
2676 * shell.el (shell-dynamic-complete-command)
2677 (shell-dynamic-complete-environment-variable):
2678 * simple.el (insert-buffer, set-selective-display)
2679 (delete-completion-window):
2680 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
2681 (speedbar-recenter):
2682 * startup.el (fancy-splash-head):
2683 * textmodes/ispell.el (ispell-command-loop):
2684 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
2685 * tutorial.el (help-with-tutorial):
2686 * vc/add-log.el (add-change-log-entry):
2687 * vc/compare-w.el (compare-windows):
2688 * vc/ediff-help.el (ediff-indent-help-message):
2689 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
2690 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
2691 (ediff-setup-control-frame):
2692 * vc/emerge.el (emerge-position-region):
2693 * vc/pcvs-util.el (cvs-bury-buffer):
2694 * window.el (walk-windows, mouse-autoselect-window-select):
2695 * winner.el (winner-set-conf, winner-undo): Related users changed.
2696
2697 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
2698
2699 * frameset.el (frameset--set-id): Doc fix.
2700 (frameset-frame-id, frameset-frame-id-equal-p)
2701 (frameset-locate-frame-id): New functions.
2702 (frameset--process-minibuffer-frames, frameset--reuse-frame)
2703 (frameset-restore): Use them.
2704
2705 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
2706
2707 Do not call to `selected-frame' where it is assumed by default.
2708 Affected functions are `raise-frame', `redraw-frame',
2709 `frame-first-window', `frame-terminal' and `delete-frame'.
2710 * calendar/appt.el (appt-disp-window):
2711 * epg.el (epg-wait-for-completion):
2712 * follow.el (follow-delete-other-windows-and-split)
2713 (follow-avoid-tail-recenter):
2714 * international/mule.el (set-terminal-coding-system):
2715 * mail/rmail.el (rmail-mail-return):
2716 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
2717 * progmodes/f90.el (f90-add-imenu-menu):
2718 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
2719 * server.el (server-switch-buffer):
2720 * simple.el (delete-completion-window):
2721 * talk.el (talk):
2722 * term/xterm.el (terminal-init-xterm-modify-other-keys)
2723 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
2724 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
2725 * vc/ediff.el (ediff-documentation): Related users changed.
2726 * frame.el (selected-terminal): Remove the leftover.
2727
2728 2013-08-05 Glenn Morris <rgm@gnu.org>
2729
2730 * calendar/calendar.el (calendar-generate-month):
2731 Fix for calendar-column-width != 1 + calendar-day-digit-width.
2732 (calendar-generate-month, calendar-font-lock-keywords):
2733 Fix for calendar-day-header-width > length of any day name.
2734
2735 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
2736
2737 * desktop.el (desktop-clear): Use new name of sort predicate.
2738
2739 * frameset.el (frameset): Add docstring. Move :version property to its
2740 own `version' slot.
2741 (frameset-copy): Rename from copy-frameset.
2742 (frameset-p): Check more thoroughly.
2743 (frameset-prop): Do not check for :version, which is no longer a prop.
2744 (frameset-live-filter-alist, frameset-persistent-filter-alist):
2745 Use new :never value instead of t.
2746 (frameset-filter-alist): Expand and clarify docstring.
2747 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
2748 (frameset-filter-minibuffer, frameset-filter-save-param)
2749 (frameset-filter-restore-param, frameset-filter-iconified):
2750 Add pointer to docstring of frameset-filter-alist.
2751 (frameset-filter-params): Rename filter values to be more meaningful:
2752 :never instead of t, and reverse the meanings of :save and :restore.
2753 (frameset--process-minibuffer-frames): Clarify error message.
2754 (frameset-save): Avoid unnecessary and confusing call to framep.
2755 Use new BOA constructor for framesets.
2756 (frameset--reuse-list): Doc fix.
2757 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
2758 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
2759 (frameset-minibufferless-first-p): Doc fix.
2760 Rename from frameset-sort-frames-for-deletion.
2761 (frameset-restore): Doc fixes. Use new function names.
2762 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
2763
2764 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
2765
2766 * desktop.el (desktop-restore-forces-onscreen)
2767 (desktop-restore-reuses-frames): Document :keyword constant values.
2768 (desktop-filter-parameters-alist): Remove, now identical to
2769 frameset-filter-alist.
2770 (desktop--filter-tty*): Remove, moved to frameset.el.
2771 (desktop-save-frameset, desktop-restore-frameset):
2772 Do not pass :filters argument.
2773
2774 * frameset.el (frameset-live-filter-alist)
2775 (frameset-persistent-filter-alist): New variables.
2776 (frameset-filter-alist): Use them. Add autoload cookie.
2777 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
2778 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
2779 `frameset--id' (it's supposed to be internal to frameset.el).
2780 (frameset--process-minibuffer-frames): Ditto. Doc fix.
2781 (frameset--initial-params): New function.
2782 (frameset--get-frame): Use it. Doc fix.
2783 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
2784 Accept :all, not 'all.
2785 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
2786 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
2787 with fbound symbols. Fix frame id matching, and remove matching ids if
2788 the frame being restored is deleted. Obey :delete.
2789
2790 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
2791
2792 * subr.el (macrop): New function.
2793 (text-clone--maintaining): New var.
2794 (text-clone--maintain): Rename from text-clone-maintain. Use it
2795 instead of inhibit-modification-hooks.
2796
2797 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
2798 a proxy, so as handle autoloads and redefinitions of the target.
2799 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
2800
2801 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
2802 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
2803 (pcase--mutually-exclusive-p): New function.
2804 (pcase--split-consp): Use it.
2805 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
2806 mutually exclusive with the current predicate.
2807
2808 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
2809 (edebug-macrop): Remove. Use `macrop' instead.
2810 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
2811 (ad-macro-p):
2812 * eshell/esh-cmd.el (eshell-macrop):
2813 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
2814
2815 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
2816
2817 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
2818 (advice-mapc): New function, using it.
2819 (advice-function-member-p): New function.
2820 (advice--normalize): Store the cdr in advice--saved-rewrite since
2821 that's the part that will be changed.
2822 (advice--symbol-function): New function.
2823 (advice-remove): Handle removal before the function is defined.
2824 Adjust to new advice--saved-rewrite.
2825 (advice-member-p): Use advice-function-member-p and
2826 advice--symbol-function.
2827
2828 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
2829
2830 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
2831 (frameset-filter-minibuffer): Doc fix.
2832 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
2833 (frameset--set-id, frameset--process-minibuffer-frames)
2834 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
2835 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
2836
2837 * desktop.el (desktop-clear): Only delete frames when called
2838 interactively and desktop-restore-frames is non-nil. Doc fix.
2839 (desktop-read): Set desktop-saved-frameset to nil.
2840
2841 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
2842
2843 * vc/vc.el (vc-ignore): Rewrite.
2844 (vc-default-ignore-completion-table):
2845 (vc--read-lines):
2846 (vc--add-line, vc--remove-regexp): New functions.
2847
2848 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
2849 (vc-svn-ignore-completion-table): New function.
2850
2851 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
2852 (vc-hg-ignore-completion-table):
2853 (vc-hg-find-ignore-file): New functions.
2854
2855 * vc/vc-git.el (vc-git-ignore): Rewrite.
2856 (vc-git-ignore-completion-table):
2857 (vc-git-find-ignore-file): New functions.
2858
2859 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
2860
2861 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
2862 (vc-bzr-ignore-completion-table):
2863 (vc-bzr-find-ignore-file): New functions.
2864
2865 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
2866
2867 * frameset.el (frameset-prop): New function and setter.
2868 (frameset-save): Do not modify frame list passed by the caller.
2869
2870 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
2871
2872 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
2873
2874 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
2875
2876 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
2877 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
2878
2879 * custom.el (custom-initialize-default, custom-initialize-set)
2880 (custom-initialize-reset, custom-initialize-changed): Affect the
2881 toplevel-default-value (bug#6275, bug#14586).
2882 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
2883 for bug#6275.
2884
2885 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
2886
2887 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2888 Add cl-def* expressions.
2889
2890 * frameset.el (frameset-filter-params): Fix order of arguments.
2891
2892 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
2893
2894 Move code related to saving frames to frameset.el.
2895 * desktop.el: Require frameset.
2896 (desktop-restore-frames): Doc fix.
2897 (desktop-restore-reuses-frames): Rename from
2898 desktop-restoring-reuses-frames.
2899 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
2900 (desktop-clear): Clear frames too.
2901 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
2902 (desktop--filter-tty*, desktop-save, desktop-read):
2903 Use frameset functions.
2904 (desktop-before-saving-frames-functions, desktop--filter-*-color)
2905 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
2906 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
2907 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
2908 (desktop--process-minibuffer-frames, desktop-save-frames)
2909 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
2910 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
2911 (desktop--sort-states, desktop-restoring-frames-p)
2912 (desktop-restore-frames): Remove. Most code moved to frameset.el.
2913 (desktop-restoring-frameset-p, desktop-restore-frameset)
2914 (desktop--check-dont-save, desktop-save-frameset): New functions.
2915 (desktop--app-id): New constant.
2916 (desktop-first-buffer, desktop-buffer-ok-count)
2917 (desktop-buffer-fail-count): Move before first use.
2918 * frameset.el: New file.
2919
2920 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
2921
2922 * files.el: Use lexical-binding.
2923 (dir-locals-read-from-file): Remove unused `err' variable.
2924 (hack-dir-local-variables--warned-coding): New var.
2925 (hack-dir-local-variables): Use it to avoid repeated warnings.
2926 (make-backup-file-name--default-function): New function.
2927 (make-backup-file-name-function): Use it as default.
2928 (buffer-stale--default-function): New function.
2929 (buffer-stale-function): Use it as default.
2930 (revert-buffer-insert-file-contents--default-function): New function.
2931 (revert-buffer-insert-file-contents-function): Use it as default.
2932 (insert-directory): Avoid add-to-list.
2933
2934 * autorevert.el (auto-revert-handler): Simplify.
2935 Use buffer-stale--default-function.
2936
2937 2013-08-01 Tassilo Horn <tsdh@gnu.org>
2938
2939 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
2940
2941 * whitespace.el (whitespace-ensure-local-variables): New function.
2942 (whitespace-cleanup-region): Call it.
2943 (whitespace-turn-on): Call it.
2944
2945 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
2946
2947 Complete file name handlers.
2948
2949 * net/tramp.el (tramp-handle-set-visited-file-modtime)
2950 (tramp-handle-verify-visited-file-modtime)
2951 (tramp-handle-file-notify-rm-watch): New functions.
2952 (tramp-call-process): Do not bind `default-directory'.
2953
2954 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2955 Order alphabetically.
2956 [access-file, add-name-to-file, dired-call-process]:
2957 [dired-compress-file, file-acl, file-notify-rm-watch]:
2958 [file-ownership-preserved-p, file-selinux-context]:
2959 [make-directory-internal, make-symbolic-link, set-file-acl]:
2960 [set-file-selinux-context, set-visited-file-modtime]:
2961 [verify-visited-file-modtime]: Add handler.
2962 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
2963
2964 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
2965 [file-notify-add-watch, file-notify-rm-watch]:
2966 [set-file-times, set-visited-file-modtime]:
2967 [verify-visited-file-modtime]: Add handler.
2968 (with-tramp-gvfs-error-message)
2969 (tramp-gvfs-handle-set-visited-file-modtime)
2970 (tramp-gvfs-fuse-file-name): Remove.
2971 (tramp-gvfs-handle-file-notify-add-watch)
2972 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
2973 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
2974
2975 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2976 Order alphabetically.
2977 [file-notify-rm-watch ]: Use default Tramp handler.
2978 [executable-find]: Remove private handler.
2979 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
2980 `default-directory'.
2981 (tramp-sh-handle-executable-find)
2982 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
2983 (tramp-sh-file-gvfs-monitor-dir-process-filter)
2984 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
2985 Do not use `format' in `tramp-message'.
2986
2987 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
2988 [file-notify-rm-watch, set-visited-file-modtime]:
2989 [verify-visited-file-modtime]: Add handler.
2990 (tramp-smb-call-winexe): Do not bind `default-directory'.
2991
2992 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
2993
2994 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
2995
2996 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
2997
2998 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
2999 use it.
3000 (log-view-diff-changeset): Same.
3001 (log-view-diff-common): Call backend command `previous-revision'
3002 to find out the previous revision, in both cases. Swap the
3003 variables `to' and `fr', so that `fr' usually refers to the
3004 earlier revision (Bug#14989).
3005
3006 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
3007
3008 * ibuf-ext.el (ibuffer-filter-by-filename):
3009 Make it work with dired buffers too.
3010
3011 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3012
3013 * emacs-lisp/re-builder.el (reb-color-display-p):
3014 * files.el (save-buffers-kill-terminal):
3015 * net/browse-url.el (browse-url):
3016 * server.el (server-save-buffers-kill-terminal):
3017 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
3018 Prefer nil to selected-frame for the first arg of frame-parameter.
3019
3020 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
3021
3022 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
3023
3024 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
3025
3026 * minibuffer.el (completion--twq-all): Try and preserve each
3027 completion's case choice (bug#14907).
3028
3029 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
3030
3031 * net/network-stream.el (open-network-stream): Mention the new
3032 :nogreeting parameter.
3033 (network-stream-open-starttls): Use the :nogreeting parameter
3034 (bug#14938).
3035
3036 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
3037
3038 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
3039 more natural than popping.
3040
3041 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
3042 (shr-urlify): Highlight under mouse.
3043
3044 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
3045
3046 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
3047
3048 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
3049
3050 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
3051 buffer for output.
3052
3053 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
3054 point-min==1. Fix search string. Fix parentheses missing.
3055
3056 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
3057 assume point-min==1. Fix search string. Fix parentheses missing.
3058
3059 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
3060
3061 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
3062 buffer for output.
3063
3064 2013-07-29 Eli Zaretskii <eliz@gnu.org>
3065
3066 * frame.el (frame-notice-user-settings): Avoid inflooping when the
3067 initial frame is minibuffer-less. (Bug#14841)
3068
3069 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
3070
3071 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
3072 option.
3073
3074 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
3075 (tramp-maybe-open-connection): Use it.
3076
3077 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
3078
3079 * desktop.el (desktop--make-frame): Include `minibuffer' in the
3080 minimal set of parameters passed when creating a frame, because
3081 the minibuffer status of a frame cannot be changed later.
3082
3083 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
3084
3085 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
3086 replace-regexp-in-string and inadvertent omissions in previous change.
3087 (todo-filter-items): Ensure only file names are comma-separated in
3088 name of filtered items buffer.
3089
3090 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
3091
3092 * desktop.el: Optionally force offscreen frames back onscreen.
3093 (desktop-restoring-reuses-frames): New option.
3094 (desktop--compute-pos, desktop--move-onscreen): New functions.
3095 (desktop--make-frame): Use desktop--move-onscreen.
3096
3097 2013-07-27 Alan Mackenzie <acm@muc.de>
3098
3099 Fontify a Java generic method as a function.
3100 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
3101 value to t.
3102
3103 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
3104
3105 * calendar/todo-mode.el: Add command to rename todo files.
3106 (todo-rename-file): New command.
3107 (todo-key-bindings-t): Add key binding for it. Change the
3108 bindings of todo-filter-regexp-items(-multifile) to use `x'
3109 instead of `r', since the latter is better suited to the new
3110 renaming command.
3111
3112 2013-07-27 Alan Mackenzie <acm@muc.de>
3113
3114 Make Java try-with-resources statement parse properly.
3115 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
3116 (c-block-stmt-1-2-key): New language constants/variables.
3117 * progmodes/cc-engine.el (c-beginning-of-statement-1)
3118 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
3119 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
3120 with c-block-stmt-1-2-key.
3121
3122 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
3123
3124 * desktop.el (desktop--make-frame): Apply most frame parameters after
3125 creating the frame to force (partially or totally) offscreen frames to
3126 be restored as such.
3127
3128 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
3129
3130 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
3131 (Bug#14948)
3132
3133 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3134
3135 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
3136 `base' arg of backtrace-frame.
3137
3138 2013-07-26 Eli Zaretskii <eliz@gnu.org>
3139
3140 * simple.el (list-processes): Doc fix.
3141
3142 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
3143
3144 * desktop.el (desktop--select-frame):
3145 Try harder to reuse existing frames.
3146
3147 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3148
3149 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
3150 (edebug-eval): Use backtrace-eval.
3151 (edebug--display, edebug--recursive-edit): Don't let-bind the
3152 edebug-outer-* vars that keep track of variables we locally let-bind.
3153 (edebug-outside-excursion): Don't restore outside values of locally
3154 let-bound vars.
3155 (edebug--display): Use user-error.
3156 (cl-lexical-debug, cl-debug-env): Remove.
3157
3158 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
3159
3160 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
3161 are restored to be sure that they are visible before deleting any
3162 remaining ones.
3163
3164 2013-07-26 Matthias Meulien <orontee@gmail.com>
3165
3166 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
3167 vc-print-root-log. (Bug#14948)
3168
3169 2013-07-26 Richard Stallman <rms@gnu.org>
3170
3171 Add aliases for encrypting mail.
3172 * epa.el (epa-mail-aliases): New option.
3173 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
3174 Bind inhibit-read-only so read-only text doesn't ruin everything.
3175 (epa-mail-default-recipients): New subroutine broken out.
3176 Handle epa-mail-aliases.
3177
3178 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3179
3180 Add support for lexical variables to the debugger's `e' command.
3181 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
3182 vars, except for debugger-outer-match-data.
3183 (debugger-frame-number): Move check for "on a function call" from
3184 callers into it. Add `skip-base' argument.
3185 (debugger-frame, debugger-frame-clear): Simplify accordingly.
3186 (debugger-env-macro): Only reset the state stored in non-variables,
3187 i.e. current-buffer and match-data.
3188 (debugger-eval-expression): Rewrite using backtrace-eval.
3189 * subr.el (internal--called-interactively-p--get-frame): Remove.
3190 (called-interactively-p):
3191 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
3192 `base' arg of backtrace-frame instead.
3193
3194 2013-07-26 Glenn Morris <rgm@gnu.org>
3195
3196 * align.el (align-regexp): Doc fix. (Bug#14857)
3197 (align-region): Explicit error if subexpression missing/does not match.
3198
3199 * simple.el (global-visual-line-mode):
3200 Do not duplicate the mode lighter. (Bug#14858)
3201
3202 2013-07-25 Martin Rudalics <rudalics@gmx.at>
3203
3204 * window.el (display-buffer): In display-buffer bind
3205 split-window-keep-point to t, bug#14829.
3206
3207 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
3208
3209 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
3210 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
3211 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
3212 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
3213 Change accordingly.
3214 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
3215 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
3216
3217 2013-07-25 Glenn Morris <rgm@gnu.org>
3218
3219 * dired-x.el (dired-mark-extension): Convert comment to doc string.
3220
3221 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
3222
3223 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
3224 parameter to modify-frame-parameters if the value has not changed;
3225 this is a workaround for bug#14949.
3226 (desktop--make-frame): On cl-delete-if call, check parameter name,
3227 not full parameter.
3228
3229 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
3230
3231 * vc/vc.el (vc-ignore): New function.
3232
3233 * vc/vc-svn.el (vc-svn-ignore): New function.
3234
3235 * vc/vc-hg.el (vc-hg-ignore): New function.
3236
3237 * vc/vc-git.el (vc-git-ignore): New function.
3238
3239 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
3240 (vc-dir-ignore): New function.
3241
3242 * vc/vc-cvs.el (vc-cvs-ignore): New function.
3243 (cvs-append-to-ignore): Move here from pcvs.el.
3244
3245 * vc/vc-bzr.el (vc-bzr-ignore): New function.
3246
3247 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
3248
3249 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
3250
3251 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
3252 (desktop-restore-frames): Warn when deleting an existing frame failed.
3253
3254 2013-07-24 Glenn Morris <rgm@gnu.org>
3255
3256 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
3257
3258 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
3259
3260 * filenotify.el (file-notify-supported-p):
3261 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
3262 Remove functions.
3263
3264 * autorevert.el (auto-revert-use-notify):
3265 (auto-revert-notify-add-watch):
3266 * net/tramp.el (tramp-file-name-for-operation):
3267 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3268 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3269 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3270 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3271 Remove `file-notify-supported-p' entry.
3272
3273 2013-07-24 Glenn Morris <rgm@gnu.org>
3274
3275 * printing.el: Replace all uses of deleted ps-windows-system,
3276 ps-lp-system, ps-flatten-list with lpr- versions.
3277
3278 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
3279
3280 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
3281 checked with memq (bug#14935).
3282
3283 * files.el (revert-buffer-function): Use a non-nil default.
3284 (revert-buffer-preserve-modes): Declare var to
3285 provide access to the `preserve-modes' argument.
3286 (revert-buffer): Let-bind it.
3287 (revert-buffer--default): New function, extracted from revert-buffer.
3288
3289 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
3290
3291 * lpr.el: Signal print errors more prominently.
3292 (print-region-function): Don't default to nil.
3293 (lpr-print-region): New function, extracted from print-region-1.
3294 Check lpr's return value and signal an error in case of problem.
3295 (print-region-1): Use it.
3296 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
3297 versions instead.
3298 (ps-printer-name): Default to nil.
3299 (ps-printer-name-option): Default to lpr-printer-switch.
3300 (ps-print-region-function): Don't default to nil.
3301 (ps-postscript-code-directory): Simplify default.
3302 (ps-do-despool): Use lpr-print-region to properly check the outcome.
3303 (ps-string-list, ps-eval-switch, ps-flatten-list)
3304 (ps-flatten-list-1): Remove.
3305 (ps-multibyte-buffer): Avoid setq.
3306 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
3307 (print-region-function, ps-print-region-function): Don't set them here.
3308
3309 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
3310
3311 * ido.el (ido-fractionp):
3312 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
3313 (ido-max-file-prompt-width, ido-unc-hosts-cache)
3314 (ido-max-directory-size, ido-max-dir-file-cache)
3315 (ido-decorations): Doc fix.
3316
3317 * ansi-color.el: Fix old URL.
3318
3319 2013-07-23 Michael R. Mauger <michael@mauger.com>
3320
3321 * progmodes/sql.el: Version 3.3
3322 (sql-product-alist): Improve oracle :prompt-cont-regexp.
3323 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
3324 (sql-interactive-remove-continuation-prompt): Rewrite, use
3325 functions above. Fix continuation prompt and complete output line
3326 handling.
3327 (sql-redirect-one, sql-execute): Use `read-only-mode' on
3328 redirected output buffer.
3329 (sql-mode): Restore deleted code (Bug#13591).
3330
3331 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
3332
3333 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
3334
3335 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
3336
3337 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
3338
3339 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3340 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3341 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
3342
3343 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
3344
3345 * desktop.el (desktop-clear): Simplify; remove useless checks
3346 against invalid buffer names.
3347 (desktop-list*): Use cl-list*.
3348 (desktop-buffer-info, desktop-create-buffer): Simplify.
3349
3350 2013-07-23 Leo Liu <sdl.web@gmail.com>
3351
3352 * bookmark.el (bookmark-make-record): Restore NAME as a default
3353 value. (Bug#14933)
3354
3355 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
3356
3357 * emacs-lisp/autoload.el (autoload--setup-output): New function,
3358 extracted from autoload--insert-text.
3359 (autoload--insert-text): Remove.
3360 (autoload--print-cookie-text): New function, extracted from
3361 autoload--insert-cookie-text.
3362 (autoload--insert-cookie-text): Remove.
3363 (autoload-generate-file-autoloads): Adjust calls accordingly.
3364
3365 * winner.el (winner-hook-installed-p): Remove.
3366 (winner-mode): Simplify accordingly.
3367
3368 * subr.el (add-to-list): Fix compiler-macro when `append' is
3369 not constant. Don't use `cl-member' for the base case.
3370
3371 * progmodes/subword.el: Fix boundary case (bug#13758).
3372 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
3373 own group.
3374 (subword-backward-regexp): Make it a constant.
3375 (subword-forward-internal): Don't treat a trailing capital as the
3376 beginning of a word.
3377
3378 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
3379
3380 * emacs-lisp/package.el (package-menu-mode): Don't modify the
3381 global value of tabulated-list-revert-hook (bug#14930).
3382
3383 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
3384
3385 * desktop.el: Require 'cl-lib.
3386 (desktop-before-saving-frames-functions): New hook.
3387 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
3388 for frames being saved. Rename from desktop--save-minibuffer-frames.
3389 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
3390 Do not save frames with non-nil `desktop-dont-save' parameter.
3391 Filter out deleted frames.
3392 (desktop--find-frame): Use cl-find-if.
3393 (desktop--select-frame): Use cl-(first|second|third) to access values
3394 of desktop-mini.
3395 (desktop--make-frame): Use cl-delete-if.
3396 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
3397 (desktop-restore-frames): Use cl-(first|second|third) to access values
3398 of desktop-mini. Look for visible frame at the end, not while
3399 restoring frames.
3400
3401 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
3402 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
3403 Use string-match-p, looking-at-p (bug#14927).
3404
3405 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
3406
3407 * desktop.el (desktop-saved-frame-states):
3408 Rename from desktop--saved-states; all users changed.
3409 (desktop-save-frames): Rename from desktop--save-frames.
3410 Do not save state to desktop file.
3411 (desktop-save): Save desktop-saved-frame-states to desktop file
3412 and reset to nil.
3413 (desktop-restoring-frames-p): New function.
3414 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
3415 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
3416 buffer-lists when restoring frames. Suggested by Martin Rudalics.
3417
3418 * desktop.el: Correctly restore iconified frames.
3419 (desktop--filter-iconified-position): New function.
3420 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
3421
3422 2013-07-20 Glenn Morris <rgm@gnu.org>
3423
3424 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
3425 Let `message' do the formatting.
3426 (def-gdb-preempt-display-buffer): Add explicit format.
3427
3428 * image-dired.el (image-dired-track-original-file):
3429 Use with-current-buffer.
3430 (image-dired-track-thumbnail): Use with-current-buffer.
3431 Avoid changing point of wrong window.
3432
3433 * image-dired.el (image-dired-track-original-file):
3434 Avoid changing point of wrong window. (Bug#14909)
3435
3436 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
3437
3438 * progmodes/gdb-mi.el (gdb-done-or-error):
3439 Guard against "%" in gdb output. (Bug#14127)
3440
3441 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
3442
3443 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
3444 (Bug#14826)
3445
3446 * international/mule.el (coding-system-iso-2022-flags): Fix last
3447 change.
3448
3449 2013-07-20 Kenichi Handa <handa@gnu.org>
3450
3451 * international/mule.el (coding-system-iso-2022-flags):
3452 Add `8-bit-level-4'. (Bug#8522)
3453
3454 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3455
3456 * net/shr.el (shr-mouse-browse-url): New command and keystroke
3457 (bug#14815).
3458
3459 * net/eww.el (eww-process-text-input): Allow inputting when the
3460 point is at the start of the line, as the properties aren't
3461 front-sticky.
3462
3463 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
3464 degenerate widths.
3465
3466 2013-07-19 Richard Stallman <rms@gnu.org>
3467
3468 * epa.el (epa-popup-info-window): Doc fix.
3469
3470 * subr.el (split-string): New arg TRIM.
3471
3472 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
3473
3474 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
3475 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
3476
3477 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
3478
3479 * filenotify.el (file-notify--library): Rename from
3480 `file-notify-support'. Do not autoload. Adapt all uses.
3481 (file-notify-supported-p): New defun.
3482
3483 * autorevert.el (auto-revert-use-notify):
3484 Use `file-notify-supported-p' instead of `file-notify-support'.
3485 Adapt docstring.
3486 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
3487
3488 * net/tramp.el (tramp-file-name-for-operation):
3489 Add `file-notify-supported-p'.
3490
3491 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
3492 New defun.
3493 (tramp-sh-file-name-handler-alist): Add it as handler for
3494 `file-notify-supported-p '.
3495
3496 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3497 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3498 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3499 Add `ignore' as handler for `file-notify-*' functions.
3500
3501 2013-07-17 Eli Zaretskii <eliz@gnu.org>
3502
3503 * simple.el (line-move-partial, line-move): Don't start vscroll or
3504 scroll-up if the current line is not taller than the window.
3505 (Bug#14881)
3506
3507 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
3508
3509 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
3510 highlight question marks in the method names as strings.
3511 (ruby-block-beg-keywords): Inline.
3512 (ruby-font-lock-keyword-beg-re): Extract from
3513 `ruby-font-lock-keywords'.
3514
3515 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
3516
3517 * frame.el (blink-cursor-blinks): New defcustom.
3518 (blink-cursor-blinks-done): New defvar.
3519 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
3520 (blink-cursor-timer-function): Check if number of blinks has been
3521 done on X and NS.
3522 (blink-cursor-suspend, blink-cursor-check): New defuns.
3523
3524 2013-07-15 Glenn Morris <rgm@gnu.org>
3525
3526 * edmacro.el (edmacro-format-keys): Fix previous change.
3527
3528 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
3529
3530 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
3531 The hack didn't work outside English locales anyway.
3532
3533 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
3534
3535 * simple.el (define-alternatives): Rename from alternatives-define,
3536 per RMS' suggestion.
3537
3538 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
3539
3540 * desktop.el (desktop-restore-frames): Change default to t.
3541 (desktop-restore-in-current-display): Now offer more options.
3542 (desktop-restoring-reuses-frames): New customization option.
3543 (desktop--saved-states): Doc fix.
3544 (desktop-filter-parameters-alist): New variable, renamed and expanded
3545 from desktop--excluded-frame-parameters.
3546 (desktop--target-display): New variable.
3547 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
3548 (desktop--filter-tty*, desktop--filter-*-color)
3549 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
3550 (desktop--filter-save-desktop-parm)
3551 (desktop-restore-in-original-display-p): New functions.
3552 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
3553 (desktop--save-minibuffer-frames): New function, inspired by a similar
3554 function from Martin Rudalics.
3555 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
3556 (desktop--restore-in-this-display-p): Remove.
3557 (desktop--find-frame): Rename from desktop--find-frame-in-display
3558 and add predicate argument.
3559 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
3560 (desktop--reuse-list): New variable.
3561 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
3562 New functions.
3563 (desktop--restore-frames): Add support for "minibuffer-special" frames.
3564
3565 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
3566
3567 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
3568
3569 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
3570
3571 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3572 Highlight conversion methods on Kernel.
3573
3574 2013-07-13 Alan Mackenzie <acm@muc.de>
3575
3576 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
3577 and comment it out. This out-commenting enables certain C++
3578 declarations to be parsed correctly.
3579
3580 2013-07-13 Eli Zaretskii <eliz@gnu.org>
3581
3582 * international/mule.el (define-coding-system): Doc fix.
3583
3584 * simple.el (default-font-height): Don't call font-info if the
3585 frame's default font didn't change since the frame was created.
3586 (Bug#14838)
3587
3588 2013-07-13 Leo Liu <sdl.web@gmail.com>
3589
3590 * ido.el (ido-read-file-name): Guard against non-symbol value.
3591
3592 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
3593
3594 * progmodes/python.el (python-imenu--build-tree): Fix corner case
3595 in nested defuns.
3596
3597 2013-07-13 Leo Liu <sdl.web@gmail.com>
3598
3599 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
3600 ido-set-matches call. (Bug#6852)
3601
3602 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
3603
3604 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
3605 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
3606 Ruby 2.0.
3607 (ruby-font-lock-keywords): Distinguish calls to functions with
3608 module-like names from module references. Highlight character
3609 literals.
3610
3611 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
3612
3613 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
3614 (gdb-send): Handle continued commands. (Bug#14847)
3615
3616 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
3617
3618 * desktop.el (desktop--v2s): Remove unused local variable.
3619 (desktop-save-buffer): Make defvar-local; adjust docstring.
3620 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
3621 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
3622
3623 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
3624
3625 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
3626
3627 2013-07-12 Eli Zaretskii <eliz@gnu.org>
3628
3629 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
3630 (Bug#14842)
3631
3632 2013-07-12 Glenn Morris <rgm@gnu.org>
3633
3634 * doc-view.el: Require cl-lib at runtime too.
3635 (doc-view-remove-if): Remove.
3636 (doc-view-search-next-match, doc-view-search-previous-match):
3637 Use cl-remove-if.
3638
3639 * edmacro.el: Require cl-lib at runtime too.
3640 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
3641 (edmacro-mismatch, edmacro-subseq): Remove.
3642
3643 * shadowfile.el: Require cl-lib.
3644 (shadow-remove-if): Remove.
3645 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
3646 Use cl-remove-if.
3647
3648 * wid-edit.el: Require cl-lib.
3649 (widget-choose): Use cl-remove-if.
3650 (widget-remove-if): Remove.
3651
3652 * progmodes/ebrowse.el: Require cl-lib at runtime too.
3653 (ebrowse-delete-if-not): Remove.
3654 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
3655 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
3656 Use cl-delete-if-not.
3657
3658 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
3659
3660 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
3661 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
3662
3663 2013-07-12 Leo Liu <sdl.web@gmail.com>
3664
3665 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
3666
3667 2013-07-11 Glenn Morris <rgm@gnu.org>
3668
3669 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
3670 (edebug-gensym-index, edebug-gensym):
3671 Remove reimplementation of cl-gensym.
3672 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
3673
3674 * thumbs.el: Require cl-lib at run-time too.
3675 (thumbs-gensym-counter, thumbs-gensym):
3676 Remove reimplementation of cl-gensym.
3677 (thumbs-temp-file): Use cl-gensym.
3678
3679 * emacs-lisp/ert.el: Require cl-lib at runtime too.
3680 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
3681 (ert--intersection, ert--set-difference, ert--set-difference-eq)
3682 (ert--union, ert--gensym-counter, ert--gensym-counter)
3683 (ert--coerce-to-vector, ert--remove*, ert--string-position)
3684 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
3685 (ert-make-test-unbound, ert--expand-should-1)
3686 (ert--expand-should, ert--should-error-handle-error)
3687 (should-error, ert--explain-equal-rec)
3688 (ert--plist-difference-explanation, ert-select-tests)
3689 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
3690 Use cl-lib functions rather than reimplementations.
3691
3692 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
3693
3694 * net/tramp.el (tramp-methods): Extend docstring.
3695 (tramp-connection-timeout): New defcustom.
3696 (tramp-error-with-buffer): Reset timestamp only when appropriate.
3697 (with-tramp-progress-reporter): Simplify.
3698 (tramp-process-actions): Improve messages.
3699
3700 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
3701 * net/tramp-sh.el (tramp-maybe-open-connection):
3702 Use `tramp-connection-timeout'.
3703 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
3704 (Bug#14808)
3705
3706 2013-07-11 Leo Liu <sdl.web@gmail.com>
3707
3708 * ido.el (ido-read-file-name): Conform to the requirements of
3709 read-file-name. (Bug#11861)
3710 (ido-read-directory-name): Conform to the requirements of
3711 read-directory-name.
3712
3713 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
3714
3715 * subr.el (delay-warning): New function.
3716
3717 2013-07-10 Eli Zaretskii <eliz@gnu.org>
3718
3719 * simple.el (default-line-height): New function.
3720 (line-move-partial, line-move): Use it instead of computing the
3721 line height inline.
3722 (line-move-partial): Always compute ROWH. If the last line is
3723 partially-visible, but its text is completely visible, allow
3724 cursor to enter such a partially-visible line.
3725
3726 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
3727
3728 Improve error messages. (Bug#14808)
3729
3730 * net/tramp.el (tramp-current-connection): New defvar, moved from
3731 tramp-sh.el.
3732 (tramp-message-show-progress-reporter-message): Remove, not
3733 needed anymore.
3734 (tramp-error-with-buffer): Show message in minibuffer.
3735 Discard input before waiting. Reset connection timestamp.
3736 (with-tramp-progress-reporter): Improve messages.
3737 (tramp-process-actions): Use progress reporter. Delete process in
3738 case of error. Improve messages.
3739
3740 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
3741 Call `tramp-error-with-buffer' with vector and buffer.
3742 (tramp-current-connection): Remove.
3743 (tramp-maybe-open-connection): The car of
3744 `tramp-current-connection' are the first 3 slots of the vector.
3745
3746 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
3747
3748 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
3749 inside continued strings.
3750
3751 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
3752
3753 Timestamp fixes for undo (Bug#14824).
3754 * files.el (clear-visited-file-modtime): Move here from fileio.c.
3755
3756 2013-07-10 Leo Liu <sdl.web@gmail.com>
3757
3758 * files.el (require-final-newline): Allow safe local value.
3759 (Bug#14834)
3760
3761 2013-07-09 Leo Liu <sdl.web@gmail.com>
3762
3763 * ido.el (ido-read-directory-name): Handle fallback.
3764 (ido-read-file-name): Update DIR to ido-current-directory.
3765 (Bug#1516)
3766 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
3767
3768 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
3769
3770 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
3771 "autoload". Remove "warn lower camel case" section, previously
3772 commented out. Highlight negation char. Do not highlight the
3773 target in singleton method definitions.
3774
3775 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
3776
3777 * faces.el (tty-setup-hook): Declare the hook.
3778
3779 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
3780 and detect when a guard/pred depends on local vars (bug#14773).
3781 (pcase--u1): Adjust caller.
3782
3783 2013-07-08 Eli Zaretskii <eliz@gnu.org>
3784
3785 * simple.el (line-move-partial, line-move): Account for
3786 line-spacing.
3787 (line-move-partial): Avoid setting vscroll when the last
3788 partially-visible line in window is of default height.
3789
3790 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
3791
3792 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
3793 been used a while.
3794
3795 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
3796
3797 * subr.el (read-quoted-char): Remove unused local variable `char'.
3798
3799 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
3800
3801 * ediff.el (ediff-version): Version update.
3802 (ediff-files-command, ediff3-files-command, ediff-merge-command)
3803 (ediff-merge-with-ancestor-command, ediff-directories-command)
3804 (ediff-directories3-command, ediff-merge-directories-command)
3805 (ediff-merge-directories-with-ancestor-command): New functions.
3806 All are command-line interfaces to ediff: to facilitate calling
3807 Emacs with the appropriate ediff functions invoked.
3808
3809 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
3810 (viper-save-kill-buffer): Check if buffer is modified.
3811
3812 * viper.el (viper-version): Version update.
3813 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
3814
3815 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
3816
3817 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
3818 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
3819 (viper-intercept-ESC-key): Simplify.
3820 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
3821 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
3822 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
3823 (viper-setup-ESC-to-escape): New functions.
3824 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
3825 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
3826
3827 2013-07-07 Eli Zaretskii <eliz@gnu.org>
3828
3829 * simple.el (default-font-height, window-screen-lines):
3830 New functions.
3831 (line-move, line-move-partial): Use them instead of
3832 frame-char-height and window-text-height. This makes scrolling
3833 text smoother when the buffer's default face uses a font that is
3834 different from the frame's default font.
3835
3836 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
3837
3838 * files.el (write-file): Do not display confirm dialog for NS,
3839 it does its own dialog, which can't be cancelled (Bug#14578).
3840
3841 2013-07-06 Eli Zaretskii <eliz@gnu.org>
3842
3843 * simple.el (line-move-partial): Adjust the row returned by
3844 posn-at-point for the current window-vscroll. (Bug#14567)
3845
3846 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
3847
3848 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
3849 (tramp-sh-file-inotifywait-process-filter): Handle file names with
3850 spaces.
3851
3852 2013-07-06 Martin Rudalics <rudalics@gmx.at>
3853
3854 * window.el (window-state-put-stale-windows): New variable.
3855 (window--state-put-2): Save list of windows without matching buffer.
3856 (window-state-put): Remove "bufferless" windows if possible.
3857
3858 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
3859
3860 * simple.el (alternatives-define): Remove leftover :group keyword.
3861 Tweak docstring.
3862
3863 2013-07-06 Leo Liu <sdl.web@gmail.com>
3864
3865 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
3866 (ido-enable-virtual-buffers): New variable.
3867 (ido-buffer-internal, ido-toggle-virtual-buffers)
3868 (ido-make-buffer-list): Use it.
3869 (ido-exhibit): Support turning on and off virtual buffers
3870 automatically.
3871
3872 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
3873
3874 * simple.el (alternatives-define): New macro.
3875
3876 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
3877
3878 * subr.el (read-quoted-char): Use read-key.
3879 (sit-for): Let read-event decode tty input (bug#14782).
3880
3881 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
3882
3883 * calendar/todo-mode.el: Add handling of file deletion, both by
3884 mode command and externally. Fix various related bugs.
3885 Clarify Commentary and improve some documentation strings and code.
3886 (todo-delete-file): New command.
3887 (todo-check-file): New function.
3888 (todo-show): Handle external deletion of the file we're trying to
3889 show (bug#14688). Replace called-interactively-p by an optional
3890 prefix argument to avoid problematic interaction with catch form
3891 when byte compiled (bug#14702).
3892 (todo-quit): Handle external deletion of the archive's todo file.
3893 Make sure the buffer that was visiting the archive file is still
3894 live before trying to bury it.
3895 (todo-category-completions): Handle external deletion of any
3896 category completion files.
3897 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
3898 of todo files, in case of external deletion.
3899 (todo-add-file): Replace unnecessary setq by let-binding.
3900 (todo-find-archive): Check whether there are any archives.
3901 Replace unnecessary setq by let-binding.
3902 (todo-archive-done-item): Use find-file-noselect to get the
3903 archive buffer whether or not the archive already exists.
3904 Remove superfluous code. Use file size instead of buffer-file-name to
3905 check if the archive is new; if it is, update list of archives.
3906 (todo-default-todo-file): Allow nil to be a valid value for when
3907 there are no todo files.
3908 (todo-reevaluate-default-file-defcustom): Use corrected definition
3909 of todo-default-todo-file.
3910 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
3911 (todo-delete-category, todo-show-categories-table)
3912 (todo-category-number): Clarify comment.
3913 (todo-filter-items): Clarify documentation string.
3914 (todo-show-current-file, todo-display-as-todo-file)
3915 (todo-reset-and-enable-done-separator): Tweak documentation string.
3916 (todo-done-separator): Make separator length window-width, since
3917 bug#2749 is now fixed.
3918
3919 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
3920
3921 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
3922 Support both "gvfs-monitor-dir" and "inotifywait".
3923 (tramp-sh-file-inotifywait-process-filter): Rename from
3924 `tramp-sh-file-notify-process-filter'.
3925 (tramp-sh-file-gvfs-monitor-dir-process-filter)
3926 (tramp-get-remote-gvfs-monitor-dir): New defuns.
3927
3928 2013-07-05 Leo Liu <sdl.web@gmail.com>
3929
3930 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
3931
3932 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3933
3934 * frame.el (display-pixel-height, display-pixel-width)
3935 (display-mm-height, display-mm-width): Mention behavior on
3936 multi-monitor setups in docstrings.
3937 (w32-display-monitor-attributes-list): Declare function.
3938 (display-monitor-attributes-list): Use it.
3939
3940 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
3941
3942 * filenotify.el: New package.
3943
3944 * autorevert.el (top): Require filenotify.el.
3945 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
3946 instead.
3947 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
3948 (auto-revert-notify-handler): Use `file-notify-*' functions.
3949
3950 * subr.el (file-notify-handle-event): Move function to filenotify.el.
3951
3952 * net/tramp.el (tramp-file-name-for-operation):
3953 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
3954
3955 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
3956 for `file-notify-add-watch' and `file-notify-rm-watch'.
3957 (tramp-process-sentinel): Improve trace.
3958 (tramp-sh-handle-file-notify-add-watch)
3959 (tramp-sh-file-notify-process-filter)
3960 (tramp-sh-handle-file-notify-rm-watch)
3961 (tramp-get-remote-inotifywait): New defuns.
3962
3963 2013-07-03 Juri Linkov <juri@jurta.org>
3964
3965 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
3966 call of `occur-read-primary-args' to interactive spec.
3967
3968 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
3969 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
3970
3971 2013-07-03 Matthias Meulien <orontee@gmail.com>
3972
3973 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
3974 `Buffer-menu-multi-occur'. Add it to the menu.
3975 (Buffer-menu-mode): Document it in docstring.
3976 (Buffer-menu-multi-occur): New command. (Bug#14673)
3977
3978 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
3979
3980 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
3981 keywords and built-ins.
3982
3983 2013-07-03 Glenn Morris <rgm@gnu.org>
3984
3985 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
3986
3987 Make info-xref checks case-sensitive by default
3988 * info.el (Info-find-node, Info-find-in-tag-table)
3989 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
3990 Add option for exact case matching of nodes.
3991 * info-xref.el (info-xref): New custom group.
3992 (info-xref-case-fold): New option.
3993 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
3994
3995 2013-07-03 Leo Liu <sdl.web@gmail.com>
3996
3997 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
3998
3999 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4000
4001 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
4002 middle of block statement initially, lower the depth. Remove
4003 FIXME comment, not longer valid. Remove middle of block statement
4004 detection, no need to do that anymore since we've been using
4005 `ruby-parse-region' here.
4006
4007 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
4008
4009 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
4010
4011 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
4012
4013 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
4014
4015 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
4016
4017 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
4018 (desktop-restore-in-current-display): New customization option.
4019 (desktop--excluded-frame-parameters): Add `font'.
4020 (desktop--save-frames): Rename from desktop--save-windows.
4021 (desktop--restore-in-this-display-p): New function.
4022 (desktop--make-full-frame): Remove unwanted width/height from
4023 full(width|height) frames.
4024 (desktop--restore-frames): Rename from desktop--restore-windows.
4025 Obey desktop-restore-current-display. Do not delete old frames or
4026 select a new frame unless we were able to restore at least one frame.
4027
4028 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
4029
4030 * files.el (find-file-noselect): Simplify conditional expression.
4031
4032 * remember.el (remember-append-to-file):
4033 Don't mix `find-buffer-visiting' and `get-file-buffer'.
4034
4035 Add `remember-notes' function to store random notes across Emacs
4036 restarts.
4037 * remember.el (remember-data-file): Add :set callback to affect
4038 notes buffer (if any).
4039 (remember-notes): New command.
4040 (remember-notes-buffer-name, bury-remember-notes-on-kill):
4041 New defcustoms for the `remember-notes' function.
4042 (remember-notes-save-and-bury-buffer): New command.
4043 (remember-notes-mode-map): New variable.
4044 (remember-mode): New minor mode.
4045 (remember-notes--kill-buffer-query): New function.
4046 * startup.el (initial-buffer-choice): Add notes to custom type.
4047
4048 2013-06-30 Eli Zaretskii <eliz@gnu.org>
4049
4050 * bindings.el (right-char, left-char): Don't call sit-for, this is
4051 no longer needed. Use arithmetic comparison only for numerical
4052 arguments.
4053
4054 * international/mule-cmds.el (select-safe-coding-system):
4055 Handle the case of FROM being a string correctly. (Bug#14755)
4056
4057 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4058
4059 * net/shr.el (shr-make-table-1): Add a sanity check that allows
4060 progression on degenerate tables.
4061 (shr-rescale-image): ImageMagick animated images currently don't work.
4062
4063 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
4064
4065 Some fixes and improvements for desktop frame restoration.
4066 It is still experimental and disabled by default.
4067 * desktop.el (desktop--save-windows): Put the selected frame at
4068 the head of the list.
4069 (desktop--make-full-frame): New function.
4070 (desktop--restore-windows): Try to re-select the frame that was
4071 selected upon saving. Do not abort if some frames fail to restore,
4072 just show an error message and continue. Set up maximized frames
4073 so they have default non-maximized dimensions.
4074
4075 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
4076
4077 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
4078 Don't start heredoc inside a string or comment.
4079
4080 2013-06-29 Eli Zaretskii <eliz@gnu.org>
4081
4082 * bindings.el (visual-order-cursor-movement): New defcustom.
4083 (right-char, left-char): Provide visual-order cursor motion by
4084 calling move-point-visually. Update the doc strings.
4085
4086 2013-06-28 Kenichi Handa <handa@gnu.org>
4087
4088 * international/mule.el (define-coding-system): New coding system
4089 properties :inhibit-null-byte-detection,
4090 :inhibit-iso-escape-detection, and :prefer-utf-8.
4091 (set-buffer-file-coding-system): If :charset-list property of
4092 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
4093 appropriate for setting.
4094
4095 * international/mule-cmds.el (select-safe-coding-system):
4096 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
4097 multibyte characters, return utf-8 (or one of its siblings).
4098
4099 * international/mule-conf.el (prefer-utf-8): New coding system.
4100 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
4101 files.
4102
4103 2013-06-28 Ivan Kanis <ivan@kanis.fr>
4104
4105 * net/shr.el (shr-render-region): New function.
4106
4107 * net/eww.el: Autoload `eww-browse-url'.
4108
4109 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
4110
4111 * emacs-lisp/package-x.el (package-upload-buffer-internal):
4112 Adapt to `package-desc-version' being a list.
4113 Use `package--ac-desc-version' to retrieve version from a package
4114 archive element.
4115
4116 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
4117
4118 New experimental feature to save&restore window and frame setup.
4119 * desktop.el (desktop-save-windows): New defcustom.
4120 (desktop--saved-states): New var.
4121 (desktop--excluded-frame-parameters): New defconst.
4122 (desktop--filter-frame-parms, desktop--find-frame-in-display)
4123 (desktop--restore-windows, desktop--save-windows): New functions.
4124 (desktop-save): Call `desktop--save-windows'.
4125 (desktop-read): Call `desktop--restore-windows'.
4126
4127 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4128
4129 * net/shr.el (add-face-text-property): Remove compat definition.
4130
4131 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
4132
4133 * info.el (Info-try-follow-nearest-node): Move search for footnote
4134 above search for node name to prevent missing a footnote (bug#14717).
4135
4136 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
4137
4138 * obsolete/otodo-mode.el: Add obsolescence info to file header.
4139
4140 2013-06-27 Leo Liu <sdl.web@gmail.com>
4141
4142 * net/eww.el (eww-read-bookmarks): Check file size.
4143
4144 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
4145
4146 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
4147 advice--pending if newdef is nil or an autoload (bug#13820).
4148 (advice-mapc): New function.
4149
4150 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4151
4152 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
4153 probably.
4154 (eww-mode-map): Add a menu bar.
4155 (eww-add-bookmark): New command.
4156 (eww-bookmark-mode): New mode and commands.
4157 (eww-add-bookmark): Remove newlines from the title.
4158 (eww-bookmark-browse): Don't bug out if it's the only window.
4159
4160 2013-06-26 Glenn Morris <rgm@gnu.org>
4161
4162 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
4163 (hfy-size): Handle ttys. (Bug#14668)
4164
4165 * info-xref.el: Update for Texinfo 5 change in *note format.
4166 (info-xref-node-re, info-xref-note-re): New constants.
4167 (info-xref-check-buffer): Use info-xref-note-re.
4168
4169 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
4170
4171 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
4172
4173 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
4174 nil terminate the loop (bug#14718).
4175
4176 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4177
4178 * net/eww.el: Rework history traversal. When going forward/back,
4179 put these actions into the history, too, so that they can be
4180 replayed.
4181 (eww-render): Move the history reset to the correct buffer.
4182
4183 2013-06-25 Juri Linkov <juri@jurta.org>
4184
4185 * files-x.el (modify-dir-local-variable): Change the header comment
4186 in the file with directory local variables. (Bug#14692)
4187
4188 * files-x.el (read-file-local-variable-value): Add `default'.
4189 (Bug#14710)
4190
4191 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4192
4193 * net/eww.el (eww-make-unique-file-name): Create a unique file
4194 name before saving to entering `y' accidentally asynchronously.
4195
4196 2013-06-25 Ivan Kanis <ivan@kanis.fr>
4197
4198 * net/eww.el (eww-download): New command and keystroke.
4199
4200 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4201
4202 * net/eww.el (eww-copy-page-url): Change name of command.
4203
4204 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
4205 be more consistent with Info and dired.
4206
4207 * net/eww.el (eww-mode-map): Ditto.
4208
4209 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4210
4211 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
4212 packages from archives.
4213 (package-archive-contents): Change format; include obsolete packages.
4214 (package-desc): Use `dir' to mark builtin packages.
4215 (package--from-builtin): Set the `dir' field to `builtin'.
4216 (generated-autoload-file, version-control): Declare.
4217 (package-compute-transaction): Change first arg and return value to be
4218 lists of package-descs. Adjust to new package-archive-contents format.
4219 (package--add-to-archive-contents): Adjust to new
4220 package-archive-contents format.
4221 (package-download-transaction): Arg is now a list of package-descs.
4222 (package-install): If `pkg' is a package name, pass it as
4223 a requirement, so it is subject to the usual (e.g. disabled) checks.
4224 (describe-package): Accept package-desc as well.
4225 (describe-package-1): Describe a specific package-desc. Add links to
4226 other package-descs for the same package name.
4227 (package-menu-describe-package): Pass the actual package-desc.
4228 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
4229 works correctly.
4230 (package-desc-status): New function.
4231 (package-menu--refresh): New function, extracted
4232 from package-menu--generate.
4233 (package-menu--generate): Use it.
4234 (package-delete): Update package-alist.
4235 (package-menu-execute): Don't call package-initialize.
4236
4237 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
4238 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
4239 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
4240 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
4241 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
4242 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
4243
4244 2013-06-25 Martin Rudalics <rudalics@gmx.at>
4245
4246 * window.el (window--state-get-1): Workaround for bug#14527.
4247 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
4248
4249 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4250
4251 * net/eww.el (eww-back-url): Implement the history by stashing all
4252 the data into a list.
4253 (eww-forward-url): Allow going forward in the history, too.
4254
4255 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4256
4257 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
4258 for values and use read--expression for expressions (bug#14710).
4259 (read-file-local-variable): Avoid setq.
4260 (read-file-local-variable-mode): Use minor-mode-list.
4261
4262 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4263
4264 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
4265 for DOI URLs.
4266
4267 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4268
4269 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
4270 Update imenu-support when dialect changes.
4271
4272 2013-06-25 Leo Liu <sdl.web@gmail.com>
4273
4274 * ido.el (ido-read-internal): Allow forward slash on windows.
4275
4276 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4277
4278 * net/eww.el (eww): Start of strings is \\`, not ^.
4279
4280 2013-06-24 Ivan Kanis <ivan@kanis.fr>
4281
4282 * net/shr.el (shr-browse-url): Fix interactive spec.
4283
4284 * net/eww.el (eww): Add a trailing slash to domain names.
4285
4286 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
4287
4288 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
4289
4290 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4291
4292 * net/shr.el (shr-browse-url): Use an external browser if given a
4293 prefix.
4294
4295 * net/eww.el (eww-external-browser): Move to shr.
4296
4297 2013-06-24 Ivan Kanis <ivan@kanis.fr>
4298
4299 * net/eww.el (eww): Work more correctly for file: URLs.
4300 (eww-detect-charset): Allow quoted charsets.
4301 (eww-yank-page-url): New command and keystroke.
4302
4303 2013-06-24 Daiki Ueno <ueno@gnu.org>
4304
4305 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
4306 file name of gpg executable.
4307 (epg-context-program): New function.
4308 (epg-context-home-directory): New function.
4309 (epg-context-set-program): New function.
4310 (epg-context-set-home-directory): New function.
4311 (epg--start): Use `epg-context-program' instead of
4312 'epg-gpg-program'.
4313 (epg--list-keys-1): Likewise.
4314
4315 2013-06-24 Leo Liu <sdl.web@gmail.com>
4316
4317 * ido.el (ido-read-internal): Fix bug#14620.
4318
4319 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
4320
4321 * faces.el (face-documentation): Simplify.
4322 (read-face-attribute, tty-find-type, x-resolve-font-name):
4323 Use `string-match-p'.
4324 (list-faces-display): Use `string-match-p'. Simplify.
4325 (face-spec-recalc): Check face to avoid face alias loops.
4326 (read-color): Use `string-match-p' and non-capturing parenthesis.
4327
4328 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4329
4330 * net/shr.el (shr-rescale-image): Use the new
4331 :max-width/:max-height functionality.
4332
4333 2013-06-23 Ivan Kanis <ivan@kanis.fr>
4334
4335 * net/eww.el (eww-search-prefix): New variable.
4336 (eww): Use it.
4337 (eww-external-browser): New variable.
4338 (eww-mode-map): New keystroke.
4339 (eww-browse-with-external-browser): New command.
4340
4341 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
4342
4343 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
4344
4345 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
4346 Don't skip aligning the next header field when padding is 0;
4347 otherwise, field width is not respected unless the title is as
4348 wide as the field.
4349
4350 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
4351
4352 * emacs-lisp/package.el (package-el-version): Remove.
4353 (package-process-define-package): Fix inf-loop.
4354 (package-install): Allow symbols as arguments again.
4355
4356 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
4357
4358 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
4359 add some more keyword-like methods.
4360 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
4361
4362 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
4363
4364 * bs.el (bs-buffer-show-mark): Make defvar-local.
4365 (bs-mode): Use setq-local.
4366
4367 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
4368 (emacs-lock--try-unlocking): Make defvar-local.
4369
4370 2013-06-22 Glenn Morris <rgm@gnu.org>
4371
4372 * play/cookie1.el (cookie-apropos): Minor simplification.
4373
4374 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
4375
4376 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
4377
4378 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
4379 `regexp-opt', it breaks the build during dumping.
4380
4381 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
4382
4383 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4384 Highlight keyword-like methods on Kernel and Module with
4385 font-lock-builtin-face.
4386 (auto-mode-alist): Consolidate different entries into one regexp
4387 and add more *file-s.
4388
4389 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
4390
4391 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
4392
4393 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
4394 (diary-entry): Use it in the action of this button type instead of
4395 diary-goto-entry.
4396
4397 * calendar/todo-mode.el: New version.
4398 (todo-add-category): Append new category to end of file and give
4399 it the highest number, instead of putting it at the beginning and
4400 giving it 0. Incorporate noninteractive functionality.
4401 (todo-forward-category): Adapt to 1-based category numbering.
4402 Allow skipping over archived categories.
4403 (todo-backward-category): Derive from todo-forward-category.
4404 (todo-backward-item, todo-forward-item): Make noninteractive and
4405 delegate interactive part to new commands. Make sensitive to done items.
4406 (todo-categories): Make value an alist of category names and
4407 vectors of item counts.
4408 (todo-category-beg): Make a defconst.
4409 (todo-category-number): Use 1 instead of 0 as initial value.
4410 (todo-category-select): Make sensitive to overlays, optional item
4411 highlighting and done items.
4412 (todo-delete-item): Make sensitive to overlays and marked and done items.
4413 (todo-edit-item): Make sensitive to overlays and editing of
4414 date/time header optional. Add format checks.
4415 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
4416 no-op if point is not on an item. Advertise using todo-edit-quit.
4417 (todo-edit-mode): Make sensitive to new format, font-locking, and
4418 multiple todo files.
4419 (todo-insert-item, todo-insert-item-here): Derive from
4420 todo-basic-insert-item and extend functionality.
4421 (todo-item-end, todo-item-start): Make sensitive to done items.
4422 (todo-item-string): Don't return text properties. Restore point.
4423 (todo-jump-to-category): Make sensitive to multiple todo files and
4424 todo archives. Use extended category completion.
4425 (todo-lower-item, todo-raise-item): Rename to *-priority and
4426 derive from todo-set-item-priority.
4427 (todo-mode): Derive from special-mode. Make sensitive to new
4428 format, font-locking and multiple todo files. Make read-only.
4429 (todo-mode-map): Don't suppress digit keys, so they can supply
4430 prefix arguments. Add many new key bindings.
4431 (todo-prefix): Insert as an overlay instead of file text.
4432 Change semantics from diary date expression to purely visual mark.
4433 (todo-print): Rename to todo-print-buffer. Make buffer display
4434 features printable. Remove option to restrict number of items
4435 printed. Add option to print to file.
4436 (todo-print-function): Rename to todo-print-buffer-function.
4437 (todo-quit): Extend to handle exiting new todo modes.
4438 (todo-remove-item): Make sensitive to overlays.
4439 (todo-save): Extend to buffers of filtered items.
4440 (todo-show): Make sensitive to done items, multiple todo files and
4441 new todo modes. Offer to convert legacy todo file before creating
4442 first new todo file.
4443 (todo-show-priorities): Rename to todo-top-priorities.
4444 Change semantics of value 0.
4445 (todo-top-priorities): Rename to todo-filter-top-priorities,
4446 derive from todo-filter-items and extend functionality.
4447 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
4448 and extend functionality to other types of filtered items.
4449 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
4450 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
4451 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
4452 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
4453 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
4454 (todo-edit-mode-hook, todo-entry-prefix-function)
4455 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
4456 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
4457 (todo-initials, todo-insert-threshold, todo-item-string-start)
4458 (todo-line-string, todo-menu, todo-mode-hook)
4459 (todo-more-important-p, todo-previous-answer, todo-previous-line)
4460 (todo-print-priorities, todo-remove-separator)
4461 (todo-save-top-priorities-too, todo-string-count-lines)
4462 (todo-string-multiline-p, todo-time-string-format)
4463 (todo-tmp-buffer-name): Remove.
4464 (todo-add-file, todo-archive-done-item, todo-choose-archive)
4465 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
4466 (todo-edit-category-diary-inclusion)
4467 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
4468 (todo-edit-file, todo-edit-item-date-day)
4469 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
4470 (todo-edit-item-date-month, todo-edit-item-date-to-today)
4471 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
4472 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
4473 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
4474 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
4475 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
4476 (todo-filter-top-priorities-multifile, todo-find-archive)
4477 (todo-find-filtered-items-file, todo-go-to-source-item)
4478 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
4479 (todo-jump-to-archive-category, todo-lower-category)
4480 (todo-mark-category, todo-marked-item-p, todo-merge-category)
4481 (todo-move-category, todo-move-item, todo-next-button)
4482 (todo-next-item, todo-padded-string, todo-powerset)
4483 (todo-previous-button, todo-previous-item)
4484 (todo-print-buffer-to-file, todo-raise-category)
4485 (todo-rename-category, todo-repair-categories-sexp, todo-search)
4486 (todo-set-category-number, todo-set-item-priority)
4487 (todo-set-top-priorities-in-category)
4488 (todo-set-top-priorities-in-file, todo-show-categories-table)
4489 (todo-sort-categories-alphabetically-or-numerically)
4490 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
4491 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
4492 (todo-toggle-item-header, todo-toggle-item-highlighting)
4493 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
4494 (todo-toggle-view-done-items, todo-toggle-view-done-only)
4495 (todo-unarchive-items, todo-unmark-category): New commands.
4496 (todo-absolute-file-name, todo-add-to-buffer-list)
4497 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
4498 (todo-basic-insert-item, todo-category-completions)
4499 (todo-category-number, todo-category-string-matcher-1)
4500 (todo-category-string-matcher-2, todo-check-filtered-items-file)
4501 (todo-check-format, todo-clear-matches)
4502 (todo-comment-string-matcher, todo-convert-legacy-date-time)
4503 (todo-current-category, todo-date-string-matcher)
4504 (todo-define-insertion-command, todo-diary-expired-matcher)
4505 (todo-diary-goto-entry, todo-diary-item-p)
4506 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
4507 (todo-display-categories, todo-display-sorted, todo-done-item-p)
4508 (todo-done-item-section-p, todo-done-separator)
4509 (todo-done-string-matcher, todo-files, todo-filter-items)
4510 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
4511 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
4512 (todo-insert-category-line, todo-insert-item-from-calendar)
4513 (todo-insert-sort-button, todo-insert-with-overlays)
4514 (todo-insertion-command-name, todo-insertion-key-bindings)
4515 (todo-label-to-key, todo-longest-category-name-length)
4516 (todo-make-categories-list, todo-mode-external-set)
4517 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
4518 (todo-modes-set-3, todo-multiple-filter-files)
4519 (todo-nondiary-marker-matcher, todo-prefix-overlays)
4520 (todo-read-category, todo-read-date, todo-read-dayname)
4521 (todo-read-file-name, todo-read-time)
4522 (todo-reevaluate-category-completions-files-defcustom)
4523 (todo-reevaluate-default-file-defcustom)
4524 (todo-reevaluate-filelist-defcustoms)
4525 (todo-reevaluate-filter-files-defcustom)
4526 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
4527 (todo-reset-done-separator, todo-reset-done-separator-string)
4528 (todo-reset-done-string, todo-reset-global-current-todo-file)
4529 (todo-reset-highlight-item, todo-reset-nondiary-marker)
4530 (todo-reset-prefix, todo-set-categories)
4531 (todo-set-date-from-calendar, todo-set-show-current-file)
4532 (todo-set-top-priorities, todo-short-file-name)
4533 (todo-show-current-file, todo-sort, todo-time-string-matcher)
4534 (todo-total-item-counts, todo-update-buffer-list)
4535 (todo-update-categories-display, todo-update-categories-sexp)
4536 (todo-update-count, todo-validate-name, todo-y-or-n-p):
4537 New functions.
4538 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
4539 New major modes.
4540 (todo-categories, todo-display, todo-edit, todo-faces)
4541 (todo-filtered): New defgroups.
4542 (todo-archived-only, todo-button, todo-category-string, todo-date)
4543 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
4544 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
4545 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
4546 (todo-add-item-if-new-category, todo-always-add-time-string)
4547 (todo-categories-align, todo-categories-archived-label)
4548 (todo-categories-category-label, todo-categories-diary-label)
4549 (todo-categories-done-label, todo-categories-number-separator)
4550 (todo-categories-todo-label, todo-categories-totals-label)
4551 (todo-category-completions-files, todo-completion-ignore-case)
4552 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
4553 (todo-done-separator-string, todo-done-string)
4554 (todo-files-function, todo-filter-done-items, todo-filter-files)
4555 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
4556 (todo-initial-category, todo-initial-file, todo-item-mark)
4557 (todo-legacy-date-time-regexp, todo-mode-line-function)
4558 (todo-nondiary-marker, todo-number-prefix)
4559 (todo-print-buffer-function, todo-show-current-file)
4560 (todo-show-done-only, todo-show-first, todo-show-with-done)
4561 (todo-skip-archived-categories, todo-top-priorities-overrides)
4562 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
4563 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
4564 New defcustoms.
4565 (todo-category-done, todo-date-pattern, todo-date-string-start)
4566 (todo-diary-items-buffer, todo-done-string-start)
4567 (todo-filtered-items-buffer, todo-item-start)
4568 (todo-month-abbrev-array, todo-month-name-array)
4569 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
4570 (todo-top-priorities-buffer): New defconsts.
4571 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
4572 (todo-categories-with-marks, todo-category-string-face)
4573 (todo-comment-face, todo-comment-string, todo-current-todo-file)
4574 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
4575 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
4576 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
4577 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
4578 (todo-font-lock-keywords, todo-global-current-todo-file)
4579 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
4580 (todo-insertion-commands-args)
4581 (todo-insertion-commands-args-genlist)
4582 (todo-insertion-commands-names, todo-insertion-map)
4583 (todo-key-bindings-t, todo-key-bindings-t+a)
4584 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
4585 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
4586 (todo-nondiary-face, todo-print-buffer, todo-time-face)
4587 (todo-visited): New variables.
4588
4589 2013-06-21 Glenn Morris <rgm@gnu.org>
4590
4591 * play/cookie1.el (cookie-apropos): Add optional display argument.
4592 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
4593 (psychoanalyze-pinhead): Use cookie-doctor.
4594
4595 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
4596
4597 * emacs-lisp/package.el (tar-get-file-descriptor)
4598 (tar--extract): Declare.
4599
4600 2013-06-21 Eduard Wiebe <usenet@pusto.de>
4601
4602 Extend flymake's warning predicate to be a function (bug#14217).
4603 * progmodes/flymake.el (flymake-warning-predicate): New.
4604 (flymake-parse-line): Use it.
4605 (flymake-warning-re): Make obsolete alias to
4606 `flymake-warning-predicate'.
4607
4608 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
4609
4610 * emacs-lisp/package.el (package-alist): Include obsolete packages.
4611 (package-obsolete-list): Remove.
4612 (package-activate): Remove min-version argument. Add `force' argument.
4613 Adjust to new package-alist format.
4614 (package-mark-obsolete): Remove.
4615 (package-unpack): Force reload of the package's autoloads.
4616 (package-installed-p): Check builtins if the installed package is not
4617 recent enough.
4618 (package-initialize): Don't reset package-obsolete-list.
4619 Don't specify which package version to activate.
4620 (package-process-define-package, describe-package-1)
4621 (package-menu--generate): Adjust to new package-alist format.
4622
4623 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
4624
4625 * allout-widgets.el (allout-widgets-mode-off)
4626 (allout-widgets-mode-on, allout-widgets-pre-command-business)
4627 (allout-widgets-post-command-business)
4628 (allout-widgets-after-copy-or-kill-function)
4629 (allout-widgets-after-undo-function, allout-test-range-overlaps)
4630 (allout-decorate-item-and-context)
4631 (allout-graphics-modification-handler): Fix typos in docstrings.
4632 (allout-get-or-create-parent-widget): Use `looking-at-p'.
4633
4634 * cmuscheme.el (scheme-start-file): Doc fix.
4635 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
4636 (scheme-input-filter): Use `string-match-p'.
4637
4638 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
4639
4640 * dired-x.el: Use Dired consistently in docstrings.
4641
4642 * dired.el: Use Dired consistently in docstrings.
4643 (dired-readin, dired-mode): Use `setq-local'.
4644 (dired-switches-alist): Make defvar-local.
4645 (dired-buffers-for-dir): Use `zerop'.
4646 (dired-safe-switches-p, dired-switches-escape-p)
4647 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
4648 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
4649 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
4650 (dired-goto-next-nontrivial-file): Use `string-match-p'.
4651 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
4652 (dired-toggle-marks, dired-mark-files-containing-regexp)
4653 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
4654 (dired-flag-auto-save-files, dired-flag-backup-files):
4655 Use `looking-at-p'.
4656 (dired-mark-files-regexp, dired-build-subdir-alist):
4657 Use `string-match-p', `looking-at-p'.
4658
4659 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
4660 (direct-print-region-helper): Use `string-match-p'.
4661
4662 2013-06-21 Leo Liu <sdl.web@gmail.com>
4663
4664 * comint.el (comint-redirect-results-list-from-process):
4665 Fix infinite loop.
4666
4667 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
4668
4669 * net/eww.el (eww-update-header-line-format): Quote % characters.
4670
4671 2013-06-21 Glenn Morris <rgm@gnu.org>
4672
4673 * play/cookie1.el (cookie): New custom group.
4674 (cookie-file): New option.
4675 (cookie-check-file): New function.
4676 (cookie): Make it interactive. Make start and end messages optional.
4677 Interactively, display the result. Default to cookie-file.
4678 (cookie-insert): Default to cookie-file.
4679 (cookie-snarf): Make start and end messages optional.
4680 Default to cookie-file. Use with-temp-buffer.
4681 (cookie-read): Rename from read-cookie.
4682 Make start and end messages optional. Default to cookie-file.
4683 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
4684 Do not autoload it.
4685 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
4686 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
4687
4688 2013-06-21 Leo Liu <sdl.web@gmail.com>
4689
4690 * progmodes/octave.el (octave-mode): Backward compatibility fix.
4691
4692 2013-06-21 Glenn Morris <rgm@gnu.org>
4693
4694 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
4695
4696 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
4697 Daniel Hackney <dan@haxney.org>
4698
4699 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
4700 Consolidate the single-file vs tarball code.
4701 (package-desc-suffix): New function.
4702 (package-desc-full-name): Don't bother inlining it.
4703 (package-load-descriptor): Return the new package-desc.
4704 (package-mark-obsolete): Remove unused arg `package'.
4705 (package-unpack): Make it work for single files as well.
4706 Make it update package-alist.
4707 (package--make-autoloads-and-stuff): Rename from
4708 package--make-autoloads-and-compile. Don't compile any more.
4709 (package--compile): New function.
4710 (package-generate-description-file): New function, extracted from
4711 package-unpack-single.
4712 (package-unpack-single): Remove.
4713 (package--with-work-buffer): Add indentation and debugging info.
4714 (package-download-single): Remove.
4715 (package-install-from-archive): Rename from package-download-tar, make
4716 it take a pkg-desc, and make it work for single files as well.
4717 (package-download-transaction): Simplify.
4718 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
4719 external tar program.
4720 (package-install-from-buffer): Remove `pkg-desc' argument.
4721 Use package-tar-file-info for tar-mode buffers.
4722 (package-install-file): Simplify accordingly.
4723 (package-archive-base): Change to take a pkg-desc.
4724 * tar-mode.el (tar--check-descriptor): New function, extracted from
4725 tar-get-descriptor.
4726 (tar-get-descriptor): Use it.
4727 (tar-get-file-descriptor): New function.
4728 (tar--extract): New function, extracted from tar-extract.
4729 (tar--extract): Use it.
4730 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
4731 case the summary uses non-ascii. Adjust to new calling convention of
4732 package-tar-file-info.
4733
4734 2013-06-21 Leo Liu <sdl.web@gmail.com>
4735
4736 * comint.el (comint-redirect-results-list-from-process):
4737 Fix random delay. (Bug#14681)
4738
4739 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
4740
4741 * profiler.el (profiler-format-number): Use log, not log10.
4742
4743 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
4744
4745 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
4746
4747 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
4748
4749 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
4750 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
4751 yet available.
4752 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
4753 (AUTOGENEL): ... here.
4754 * emacs-lisp/cl-macs.el (cl--sublis): New function.
4755 (cl--defsubst-expand): Use it.
4756
4757 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
4758
4759 * subr.el (log10): Move here from C code, and declare as obsolete.
4760 All uses of (log10 X) replaced with (log X 10).
4761
4762 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
4763
4764 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
4765 Declare with `defvar-local'.
4766 (tabulated-list-use-header-line, tabulated-list-entries)
4767 (tabulated-list-padding, tabulated-list-printer)
4768 (tabulated-list-sort-key): Declare with `defvar-local'.
4769 (tabulated-list-init-header, tabulated-list-print-fake-header):
4770 Use `setq-local'.
4771
4772 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
4773
4774 * arc-mode.el (archive-mode): Add `archive-write-file' to
4775 `write-contents-functions' also for remote files. (Bug#14652)
4776
4777 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
4778
4779 * cus-edit.el (custom-commands): Fix typos.
4780 (custom-display): Fix tooltip text.
4781 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
4782 Fix typos in docstrings.
4783 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
4784 (custom-unlispify-menu-entry, custom-magic-value-create)
4785 (custom-add-see-also, custom-group-value-create): Use ?\s.
4786 (custom-guess-type, customize-apropos, editable-field)
4787 (custom-face-value-create): Use `string-match-p'.
4788 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
4789
4790 * custom.el (custom-load-symbol): Use `string-match-p'.
4791
4792 * ansi-color.el: Convert to lexical binding.
4793 (ansi-colors): Fix URL.
4794 (ansi-color-context, ansi-color-context-region): Use defvar-local.
4795 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
4796 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
4797
4798 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4799
4800 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
4801
4802 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
4803
4804 2013-06-19 Tom Tromey <tromey@redhat.com>
4805
4806 * net/eww.el (eww-top-url): Remove.
4807 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
4808 (eww-render): Set new variables. Don't set eww-top-url.
4809 (eww-handle-link): Handle "prev", "home", and "contents".
4810 Downcase the rel text.
4811 (eww-top-url): Choose best top URL.
4812
4813 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4814
4815 * net/eww.el: Rewrite to implement form elements "by hand" instead of
4816 relying in widget.el. Using widget.el leads to too many
4817 user interface inconsistencies.
4818 (eww-self-insert): Implement entering commands in text fields.
4819 (eww-process-text-input): New function to make text input field editing
4820 work.
4821 (eww-submit): Rewrite to use the new-style form methods.
4822 (eww-select-display): Display the correct selected item.
4823 (eww-change-select): Implement changing the select value.
4824 (eww-toggle-checkbox): Implement radio/checkboxes.
4825 (eww-update-field): Fix compilation error.
4826 (eww-tag-textarea): Implement <textarea>.
4827
4828 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
4829 we don't shadow mode-specific bindings.
4830
4831 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
4832 nothing to push.
4833
4834 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
4835
4836 2013-06-19 Glenn Morris <rgm@gnu.org>
4837
4838 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
4839
4840 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
4841
4842 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
4843 not needed.
4844
4845 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
4846
4847 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4848
4849 * net/browse-url.el (browse-url-browser-function):
4850 `eww-browse-url' has the right calling signature, `eww' does not.
4851
4852 2013-06-19 Glenn Morris <rgm@gnu.org>
4853
4854 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
4855 Only eval autoloaded macros.
4856 (byte-compile-autoload): Only give the macro warning for macros.
4857
4858 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
4859 (ps-underlined-faces): Declare.
4860
4861 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
4862 (speedbar-add-supported-extension): Declare.
4863
4864 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
4865 Don't include a date stamp in the header of the generated file;
4866 it leads to needless differences between output files.
4867
4868 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
4869
4870 * net/secrets.el (secrets-struct-secret-content-type):
4871 Replace check of introspection data by a test call of "CreateItem".
4872 Some servers do not offer introspection.
4873
4874 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
4875
4876 * electric.el (electric-pair-mode): Improve interaction with
4877 electric-layout-mode.
4878 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
4879 (electric-pair-syntax): Use text-mode-syntax-table in comments
4880 and strings.
4881 (electric-pair--insert): New function.
4882 (electric-pair-post-self-insert-function): Use it and
4883 electric--after-char-pos.
4884
4885 2013-06-19 Leo Liu <sdl.web@gmail.com>
4886
4887 * progmodes/octave.el (octave-help): Fix regexp.
4888
4889 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
4890
4891 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
4892 (shr-table-horizontal-line): Allow nil as a value, and change the
4893 default.
4894 (shr-insert-table-ruler): Respect the nil value.
4895
4896 2013-06-18 Tom Tromey <tromey@barimba>
4897
4898 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
4899 New defvars.
4900 (eww-open-file): New defun.
4901 (eww-render): Initialize new variables.
4902 (eww-display-html): Handle "link" and "a".
4903 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
4904 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
4905 (eww-back-url): Rename from eww-previous-url.
4906 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
4907 New defuns.
4908
4909 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
4910
4911 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
4912 Distinguish ternary operator tokens from slash symbol and slash
4913 char literal.
4914
4915 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
4916
4917 Convert symbol prettification into minor mode and global minor mode.
4918
4919 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
4920 `prog-prettify-symbols', and make a local defvar instead of defcustom.
4921 (prettify-symbols--keywords): Rename from
4922 `prog-prettify-symbols-alist' and make a local defvar.
4923 (prettify-symbols--compose-symbol): Rename from
4924 `prog--prettify-font-lock-compose-symbol'.
4925 (prettify-symbols--make-keywords): Rename from
4926 `prog-prettify-font-lock-symbols-keywords' and simplify.
4927 (prog-prettify-install): Remove.
4928 (prettify-symbols-mode): New minor mode, based on
4929 `prog-prettify-install'.
4930 (turn-on-prettify-symbols-mode): New function.
4931 (global-prettify-symbols-mode): New globalized minor mode.
4932
4933 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
4934 * progmodes/cfengine.el (cfengine3-mode):
4935 * progmodes/perl-mode.el (perl-mode): Don't call
4936 `prog-prettify-install'; set `prettify-symbols-alist' instead.
4937
4938 2013-06-18 Juri Linkov <juri@jurta.org>
4939
4940 * files-x.el (modify-file-local-variable-message): New function.
4941 (modify-file-local-variable)
4942 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
4943 and call `modify-file-local-variable-message' when it's non-nil.
4944 (add-file-local-variable, delete-file-local-variable)
4945 (add-file-local-variable-prop-line)
4946 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
4947 and use it. (Bug#9820)
4948
4949 2013-06-18 Juri Linkov <juri@jurta.org>
4950
4951 * emulation/vi.el (vi-shell-op):
4952 * emulation/vip.el (vip-execute-com, ex-command):
4953 * emulation/viper-cmd.el (viper-exec-bang):
4954 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
4955 the call of `shell-command-on-region'. (Bug#14637)
4956
4957 * simple.el (shell-command-on-region): Doc fix.
4958
4959 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
4960
4961 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
4962 (bug#14633).
4963
4964 2013-06-18 Glenn Morris <rgm@gnu.org>
4965
4966 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
4967
4968 * newcomment.el (comment-search-forward, comment-search-backward):
4969 Doc fix. (Bug#14376)
4970
4971 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
4972
4973 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
4974 (buffer-face-mode-invoke): Doc fix.
4975
4976 2013-06-18 Matthias Meulien <orontee@gmail.com>
4977
4978 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
4979 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
4980
4981 2013-06-18 Glenn Morris <rgm@gnu.org>
4982
4983 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
4984 Replace obsolete function generic-make-keywords with its expansion.
4985
4986 * progmodes/python.el (ffap-alist): Declare.
4987
4988 * textmodes/reftex.el (bibtex-mode-map): Declare.
4989
4990 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
4991
4992 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
4993 (package-unpack, package-unpack-single): Return the pkg-dir.
4994 (package-download-transaction): Use it to update package-alist.
4995
4996 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
4997
4998 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
4999 possible choice.
5000
5001 2013-06-17 Juri Linkov <juri@jurta.org>
5002
5003 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
5004
5005 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5006
5007 * emacs-lisp/package.el (package-load-descriptor):
5008 Remove `with-syntax-table' call, `read' doesn't need it.
5009 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
5010
5011 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
5012
5013 * startup.el (command-line): Expand package name returned by
5014 `package--description-file' (bug#14639).
5015
5016 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5017
5018 * emacs-lisp/package.el (package-load-descriptor): Do not call
5019 `emacs-lisp-mode', just use its syntax table.
5020
5021 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
5022
5023 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
5024 `font-lock-extra-managed-props' if any prettifying keyword is added.
5025 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
5026 (prog-mode): Use `setq-local'.
5027
5028 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5029
5030 * international/characters.el (standard-case-table): Set syntax of ?»
5031 and ?« to punctuation.
5032
5033 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
5034
5035 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
5036 Save relevant match data before calling `syntax-ppss' (bug#14595).
5037
5038 2013-06-15 Juri Linkov <juri@jurta.org>
5039
5040 * files-x.el (modify-file-local-variable-prop-line): Add local
5041 variables to the end of the existing comment on the first line.
5042 Use `file-auto-mode-skip' to skip interpreter magic line,
5043 and also skip XML declaration.
5044
5045 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5046
5047 * startup.el (package--builtin-versions): New var.
5048 (package-subdirectory-regexp): Remove.
5049 (package--description-file): Hard code its value instead.
5050
5051 * emacs-lisp/package.el: Don't activate packages older than builtin.
5052 (package-obsolete-list): Rename from package-obsolete-alist, and make
5053 it into a simple list of package-desc.
5054 (package-strip-version): Remove.
5055 (package-built-in-p): Use package--builtin-versions.
5056 (package-mark-obsolete): Simplify.
5057 (package-process-define-package): Mark it obsolete if older than the
5058 builtin version.
5059 (package-handle-response): Use line-end-position.
5060 (package-read-archive-contents, package--download-one-archive):
5061 Simplify.
5062 (package--add-to-archive-contents): Skip if older than the builtin or
5063 installed version.
5064 (package-menu-describe-package): Fix last change.
5065 (package-list-unversioned): New var.
5066 (package-menu--generate): Use it.
5067
5068 * emacs-lisp/autoload.el: Manage package--builtin-versions.
5069 (autoload--insert-text, autoload--insert-cookie-text): New functions.
5070 (autoload-builtin-package-versions): New variable.
5071 (autoload-generate-file-autoloads): Use them.
5072 Remove the list of autoloaded functions/macros from the
5073 (autoload...) comments.
5074
5075 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
5076
5077 2013-06-15 Eli Zaretskii <eliz@gnu.org>
5078
5079 * simple.el (line-move-partial): Don't jump to the next screen
5080 line as soon as it becomes visible. Instead, continue enlarging
5081 the vscroll until the portion of a tall screen line that's left on
5082 display is about the height of the frame's default font.
5083 (Bug#14567)
5084
5085 2013-06-15 Glenn Morris <rgm@gnu.org>
5086
5087 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
5088 compilation-error-regexp-alist void, or local while let-bound.
5089
5090 * progmodes/make-mode.el (makefile-mode-syntax-table):
5091 Treat "=" as punctuation. (Bug#14614)
5092
5093 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
5094
5095 * help-fns.el (describe-variable):
5096 Add extra line for permanent-local variables.
5097
5098 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
5099
5100 * progmodes/scheme.el (scheme-font-lock-keywords-2):
5101 Add export, import, library. (Bug#9164)
5102 (library): Set indent function.
5103
5104 2013-06-14 Glenn Morris <rgm@gnu.org>
5105
5106 * term/xterm.el (xterm--query):
5107 Stop after first matching handler. (Bug#14615)
5108
5109 2013-06-14 Ivan Kanis <ivan@kanis.fr>
5110
5111 Add support for dired in saveplace.
5112 * dired.el (dired-initial-position-hook): New variable.
5113 (dired-initial-position): Call hook to place cursor position.
5114 * saveplace.el (save-place-to-alist): Add dired position.
5115 (save-place-dired-hook): New function.
5116
5117 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
5118
5119 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
5120 through a symbol rather than letrec.
5121
5122 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
5123 (package-desc): Add `dir' field.
5124 (package-desc-full-name): New function.
5125 (package-load-descriptor): Combine the two arguments. Don't use `load'.
5126 (package-maybe-load-descriptor): Remove.
5127 (package-load-all-descriptors): Just call package-load-descriptor.
5128 (package--disabled-p): New function.
5129 (package-desc-vers, package-desc-doc): Remove aliases.
5130 (package--dir): Remove function.
5131 (package-activate): Check if a package is disabled.
5132 (package-process-define-package): New function, extracted from
5133 define-package.
5134 (define-package): Turn into a place holder.
5135 (package-unpack-single, package-tar-file-info):
5136 Use package--description-file.
5137 (package-compute-transaction): Use package--disabled-p.
5138 (package-download-transaction): Don't call
5139 package-maybe-load-descriptor since they're all loaded anyway.
5140 (package-install): Change argument to be a pkg-desc.
5141 (package-delete): Use a single pkg-desc argument.
5142 (describe-package-1): Use package-desc-dir instead of package--dir.
5143 Use package-desc property instead of package-symbol.
5144 (package-install-button-action): Adjust accordingly.
5145 (package--push): Rewrite.
5146 (package-menu--print-info): Adjust accordingly. Change the ID format
5147 to be a pkg-desc.
5148 (package-menu-describe-package, package-menu-get-status)
5149 (package-menu--find-upgrades, package-menu-mark-upgrades)
5150 (package-menu-execute, package-menu--name-predicate):
5151 Adjust accordingly.
5152 * startup.el (package--description-file): New function.
5153 (command-line): Use it.
5154 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5155 Use package-desc-version.
5156
5157 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
5158 (byte-compile-preprocess): Use it.
5159 (byte-compile-file-form-defalias): Try a bit harder to use macros we
5160 can't quite recognize.
5161 (byte-compile-add-to-list): Remove.
5162 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
5163 (cconv-closure-convert): Add assertion.
5164
5165 * emacs-lisp/map-ynp.el: Use lexical-binding.
5166 (map-y-or-n-p): Remove unused vars `tail' and `object'.
5167 Factor out some repeated code.
5168
5169 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5170
5171 * subr.el (with-eval-after-load): New macro.
5172 (eval-after-load): Allow form to be a function.
5173 take advantage of lexical-binding.
5174 (do-after-load-evaluation): Use dolist and adjust to new format.
5175 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
5176
5177 2013-06-13 Juri Linkov <juri@jurta.org>
5178
5179 * replace.el (perform-replace): Display "symbol " and other search
5180 modes from `isearch-message-prefix' in the *Help* buffer.
5181
5182 * isearch.el (isearch-query-replace): Add " symbol" and other
5183 possible search modes from `isearch-message-prefix' to the prompt.
5184 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
5185 when reading a regexp to collect.
5186
5187 2013-06-13 Juri Linkov <juri@jurta.org>
5188
5189 * isearch.el (word-search-regexp): Match whitespace if the search
5190 string begins or ends in whitespace. The LAX arg is applied to
5191 both ends of the search string. Use `regexp-quote' and explicit
5192 \< and \> instead of \b. Use \` and \' instead of ^ and $.
5193 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
5194 boundaries are replaced with symbol boundaries, and characters
5195 between symbols match non-word non-symbol syntax. (Bug#14602)
5196
5197 2013-06-13 Juri Linkov <juri@jurta.org>
5198
5199 * isearch.el (isearch-del-char): Don't exceed the length of
5200 `isearch-string' by the prefix arg. (Bug#14563)
5201
5202 2013-06-13 Juri Linkov <juri@jurta.org>
5203
5204 * isearch.el (isearch-yank-word, isearch-yank-line)
5205 (isearch-char-by-name, isearch-quote-char)
5206 (isearch-printing-char, isearch-process-search-char):
5207 Add optional count prefix arg. (Bug#14563)
5208
5209 * international/isearch-x.el
5210 (isearch-process-search-multibyte-characters):
5211 Add optional count prefix arg.
5212
5213 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5214
5215 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
5216 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
5217 lexical-binding.
5218
5219 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
5220
5221 * subr.el (set-temporary-overlay-map): Add on-exit argument.
5222
5223 2013-06-13 Glenn Morris <rgm@gnu.org>
5224
5225 * startup.el (tty-handle-args):
5226 Don't just discard "--" and anything after. (Bug#14608)
5227
5228 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
5229
5230 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
5231
5232 Implement changes in Secret Service API. Make it backward compatible.
5233 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
5234 (secrets-create-item): Use it. Prefix properties with interface.
5235
5236 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
5237
5238 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
5239 (term-emulate-terminal): Respect term-suppress-hard-newline.
5240
5241 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
5242
5243 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
5244 Only remove a `thumb-file' overlay. (Bug#14548)
5245
5246 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
5247
5248 * mail/reporter.el (reporter-submit-bug-report):
5249 Handle missing package-name. (Bug#14600)
5250
5251 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5252
5253 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
5254 (reftex-citation-prompt, reftex-default-bibliography)
5255 (reftex-bib-or-thebib, reftex-get-bibfile-list)
5256 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
5257 (reftex-bib-sort-author, reftex-bib-sort-year)
5258 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
5259 (reftex-extract-bib-entries-from-thebibliography)
5260 (reftex-get-bibkey-default, reftex-get-bib-names)
5261 (reftex-parse-bibtex-entry, reftex-get-bib-field)
5262 (reftex-format-bib-entry, reftex-parse-bibitem)
5263 (reftex-format-bibitem, reftex-do-citation)
5264 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
5265 (reftex-restrict-bib-matches, reftex-extract-bib-file)
5266 (reftex-insert-bib-matches, reftex-format-citation)
5267 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
5268 (reftex-create-bibtex-file): Add docstrings, mostly by converting
5269 existing comments into docstrings.
5270
5271 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
5272
5273 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
5274
5275 2013-06-12 Andreas Schwab <schwab@suse.de>
5276
5277 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
5278 for auto-save files.
5279
5280 2013-06-12 Glenn Morris <rgm@gnu.org>
5281
5282 * ido.el (ido-delete-ignored-files): Remove.
5283 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
5284 Go back to calling ido-ignore-item-p directly.
5285
5286 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
5287
5288 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
5289
5290 * ido.el (ido-delete-ignored-files): New function,
5291 split from ido-make-file-list-1.
5292 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
5293 (ido-make-file-list-1): Use ido-delete-ignored-files.
5294
5295 2013-06-12 Leo Liu <sdl.web@gmail.com>
5296
5297 * progmodes/octave.el (inferior-octave-startup)
5298 (inferior-octave-completion-table)
5299 (inferior-octave-track-window-width-change)
5300 (octave-eldoc-function-signatures, octave-help)
5301 (octave-find-definition): Use single quoted strings.
5302 (inferior-octave-startup-args): Change default value.
5303 (inferior-octave-startup): Do not hard code "-i" and
5304 "--no-line-editing".
5305 (inferior-octave-resync-dirs): Add optional arg NOERROR.
5306 (inferior-octave-directory-tracker): Use it.
5307 (octave-goto-function-definition): Robustify.
5308 (octave-help): Support highlighting operators in 'See also'.
5309 (octave-find-definition): Find subfunctions only in Octave mode.
5310
5311 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
5312
5313 * help-fns.el (help-fns--compiler-macro): If the handler function is
5314 named, then put a link to it.
5315 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
5316 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
5317 (cl-typep): Use it.
5318 (cl-eval-when): Simplify debug spec.
5319 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
5320 compiler-macro function instead of setting `compiler-macro-file'.
5321
5322 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
5323
5324 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
5325 * vc/vc-hooks.el (vc-stay-local): Doc fix.
5326
5327 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
5328 Daniel Hackney <dan@haxney.org>
5329
5330 First part of Daniel Hackney's patch to package.el.
5331 * emacs-lisp/package.el: Use defstruct.
5332 (package-desc): New, main struct.
5333 (package--bi-desc, package--ac-desc): New structs, used to describe the
5334 format in external files.
5335 (package-desc-vers): Replace with package-desc-version accessor.
5336 (package-desc-doc): Replace with package-desc-summary accessor.
5337 (package-activate-1): Remove `package' arg since the pkg-vec now
5338 includes the name.
5339 (define-package): Use package-desc-from-define.
5340 (package-unpack-single): Change file-name arg to be a symbol.
5341 (package--add-to-archive-contents): Use package-desc-create and new
5342 accessor functions to package--ac-desc.
5343 (package-buffer-info, package-tar-file-info): Return a package-desc.
5344 (package-install-from-buffer): Remove `type' argument. Change pkg-info
5345 arg to be a package-desc.
5346 (package-install-file): Adjust accordingly. Use \' to match EOS.
5347 (package--from-builtin): New function.
5348 (describe-package-1, package-menu--generate): Use it.
5349 (package--make-autoloads-and-compile): Change name arg to be a symbol.
5350 (package-generate-autoloads): Idem and return the name of the file.
5351 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5352 Change pkg-info arg to be a package-desc.
5353 Use package-make-ac-desc.
5354 (package-upload-file): Use \' to match EOS.
5355 * finder.el (finder-compile-keywords): Use package-make-builtin.
5356
5357 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5358
5359 * vc/vc.el (vc-deduce-fileset): Change error message.
5360 (vc-read-backend): New function.
5361 (vc-next-action): Use it.
5362
5363 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
5364
5365 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
5366 (prolog-font-lock-keywords): Use regexp-opt instead.
5367 Don't manually highlight strings.
5368 (prolog-mode-variables): Simplify comment-start-skip.
5369 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
5370
5371 * emacs-lisp/generic.el (generic--normalise-comments)
5372 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
5373 (generic-mode-set-comments): Use them.
5374 (generic-bracket-support): Use setq-local.
5375 (generic-make-keywords-list): Declare obsolete.
5376
5377 2013-06-11 Glenn Morris <rgm@gnu.org>
5378
5379 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5380 Prettify after setting font-lock-defaults. (Bug#14574)
5381
5382 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
5383
5384 * replace.el (query-replace, occur-read-regexp-defaults-function)
5385 (replace-search):
5386 * subr.el (declare-function, number-sequence, local-set-key)
5387 (substitute-key-definition, locate-user-emacs-file)
5388 (with-silent-modifications, split-string, eval-after-load):
5389 Fix typos, remove unneeded backslashes and reflow some docstrings.
5390
5391 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5392
5393 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
5394 default for Elisp files.
5395
5396 2013-06-11 Glenn Morris <rgm@gnu.org>
5397
5398 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
5399 although define-derived-mode was doing this anyway. (Bug#14583)
5400
5401 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
5402
5403 * allout.el (allout-encryption-plaintext-sanitization-regexps):
5404 Fix make-variable-buffer-local call to refer to the correct variable.
5405
5406 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
5407
5408 * eshell/em-term.el (eshell-visual-commands)
5409 (eshell-visual-subcommands, eshell-visual-options):
5410 Add summary line to docstrings. Add cross-references.
5411
5412 2013-06-10 Glenn Morris <rgm@gnu.org>
5413
5414 * epa.el (epa-read-file-name): New function. (Bug#14510)
5415 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
5416
5417 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
5418
5419 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
5420 output redirection to be ignored with visual commands.
5421
5422 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
5423
5424 * eshell/em-term.el (eshell-visual-command-p): New function.
5425 (eshell-term-initialize): Move long lambda to separate function
5426 eshell-visual-command-p.
5427 * eshell/em-dirs.el (eshell-dirs-initialise):
5428 * eshell/em-script.el (eshell-script-initialize):
5429 Add missing #' to lambda.
5430
5431 2013-06-08 Leo Liu <sdl.web@gmail.com>
5432
5433 * progmodes/octave.el (octave-add-log-current-defun): New function.
5434 (octave-mode): Set add-log-current-defun-function.
5435 (octave-goto-function-definition): Do not move point if not found.
5436 (octave-find-definition): Enhance to try subfunctions first.
5437
5438 2013-06-08 Glenn Morris <rgm@gnu.org>
5439
5440 * emacs-lisp/bytecomp.el (byte-compile-char-before)
5441 (byte-compile-backward-char, byte-compile-backward-word):
5442 Improve previous change, to handle non-explicit nil.
5443
5444 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
5445
5446 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
5447 (smie--opener/closer-at-point): New function.
5448 (smie--matching-block-data): Use it. Don't match from right after an
5449 opener or right before a closer. Obey smie-blink-matching-inners.
5450 Don't signal a mismatch for repeated inners like "switch..case..case".
5451
5452 2013-06-07 Leo Liu <sdl.web@gmail.com>
5453
5454 * progmodes/octave.el (octave-mode): Set comment-use-global-state
5455 to t. (Bug#14303)
5456 (octave-function-header-regexp): Fix. (Bug#14570)
5457 (octave-help-mode-finish-hook, octave-help-mode-finish):
5458 Remove. Just use temp-buffer-show-hook.
5459
5460 * newcomment.el (comment-search-backward): Revert last change.
5461 (Bug#14434)
5462
5463 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
5464
5465 2013-06-07 Eli Zaretskii <eliz@gnu.org>
5466
5467 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
5468 through xargs, to avoid failure due to MS-Windows limitations on
5469 command-line length.
5470
5471 2013-06-06 Glenn Morris <rgm@gnu.org>
5472
5473 * font-lock.el (lisp-font-lock-keywords-2):
5474 Treat user-error like error.
5475
5476 * emacs-lisp/bytecomp.el (byte-compile-char-before)
5477 (byte-compile-backward-char, byte-compile-backward-word):
5478 Handle explicit nil arguments. (Bug#14565)
5479
5480 2013-06-05 Alan Mackenzie <acm@muc.de>
5481
5482 * isearch.el (isearch-allow-prefix): New user option.
5483 (isearch-other-meta-char): Don't exit isearch when a prefix
5484 argument is typed whilst `isearch-allow-prefix' is non-nil.
5485 (Bug#9706)
5486
5487 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5488
5489 * autorevert.el (auto-revert-notify-handler): Use memq.
5490 Hide assertion failure.
5491
5492 * skeleton.el: Use cl-lib.
5493 (skeleton-further-elements): Use defvar-local.
5494 (skeleton-insert): Use cl-progv.
5495
5496 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
5497
5498 * progmodes/prog-mode.el (prog-prettify-symbols)
5499 (prog-prettify-install): Update docstrings.
5500
5501 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5502
5503 * simple.el: Move all the prog-mode code to prog-mode.el.
5504 * progmodes/prog-mode.el: New file.
5505 * loadup.el: Add prog-mode.el.
5506
5507 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
5508
5509 * simple.el (prog-prettify-symbols): Add version.
5510 (prog-prettify-install): Add convenience function to prettify symbols.
5511
5512 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
5513 (perl--augmented-font-lock-keywords-1)
5514 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
5515 variables and use it.
5516
5517 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
5518 (cfengine3-mode): Remove unneeded variable and use it.
5519
5520 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
5521 (lisp--augmented-font-lock-keywords-1)
5522 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
5523 Remove unneeded variables and use it.
5524
5525 2013-06-05 João Távora <joaotavora@gmail.com>
5526
5527 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
5528 to point when opening the connection. (Bug#14380)
5529
5530 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5531
5532 * subr.el (load-history-regexp, load-history-filename-element)
5533 (eval-after-load, after-load-functions, do-after-load-evaluation)
5534 (eval-next-after-load, display-delayed-warnings)
5535 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
5536 definition of save-match-data.
5537 (overriding-local-map): Remove accidental obsolescence declaration.
5538
5539 * emacs-lisp/edebug.el (edebug-result): Move before first use.
5540
5541 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
5542
5543 Generalize symbol prettify support to prog-mode and implement it
5544 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
5545 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
5546 (prog--prettify-font-lock-compose-symbol)
5547 (prog-prettify-font-lock-symbols-keywords): New variables and
5548 functions to support symbol prettification.
5549 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
5550 (lisp--augmented-font-lock-keywords-1)
5551 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
5552 (lisp--prettify-symbols-alist): Implement prettify of lambda.
5553 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
5554 (cfengine3--prettify-symbols-alist, cfengine3-mode):
5555 Implement prettify of -> => :: strings.
5556 * progmodes/perl-mode.el (perl-prettify-symbols)
5557 (perl--font-lock-compose-symbol)
5558 (perl--font-lock-symbols-keywords): Move to prog-mode.
5559 (perl--prettify-symbols-alist): Prettify -> => :: strings.
5560 (perl-font-lock-keywords-1)
5561 (perl-font-lock-keywords-2): Remove explicit prettify support.
5562 (perl--augmented-font-lock-keywords)
5563 (perl--augmented-font-lock-keywords-1)
5564 (perl--augmented-font-lock-keywords-2, perl-mode):
5565 Implement prettify support.
5566
5567 2013-06-05 Leo Liu <sdl.web@gmail.com>
5568
5569 Re-implement smie matching block highlight using
5570 show-paren-data-function. (Bug#14395)
5571 * emacs-lisp/smie.el (smie-matching-block-highlight)
5572 (smie--highlight-matching-block-overlay)
5573 (smie--highlight-matching-block-lastpos)
5574 (smie-highlight-matching-block)
5575 (smie-highlight-matching-block-mode): Remove.
5576 (smie--matching-block-data-cache): New variable.
5577 (smie--matching-block-data): New function.
5578 (smie-setup): Use smie--matching-block-data for
5579 show-paren-data-function.
5580
5581 * progmodes/octave.el (octave-mode-menu): Fix.
5582 (octave-find-definition): Skip garbage lines.
5583
5584 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5585
5586 Fix compilation error with simultaneous dynamic+lexical scoping.
5587 Add warning when a defvar appears after the first let-binding.
5588 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
5589 (byte-compile-close-variables): Initialize it.
5590 (byte-compile--declare-var): New function.
5591 (byte-compile-file-form-defvar)
5592 (byte-compile-file-form-define-abbrev-table)
5593 (byte-compile-file-form-custom-declare-variable): Use it.
5594 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
5595 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
5596 (byte-compile-bind): Handle dynamic bindings that shadow
5597 lexical bindings.
5598 (byte-compile-unbind): Make arg non-optional.
5599 (byte-compile-let): Simplify.
5600 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
5601 (cconv--analyse-function, cconv-analyse-form): Populate it.
5602 Protect byte-compile-bound-variables to limit the scope of defvars.
5603 (cconv-analyse-form): Add missing rule for (defvar <foo>).
5604 Remove unneeded rule for `declare'.
5605
5606 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
5607 so as to avoid depending on cl-adjoin at run-time.
5608 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
5609
5610 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
5611 (macroexp--warn-and-return): Use it.
5612
5613 2013-06-05 Leo Liu <sdl.web@gmail.com>
5614
5615 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
5616
5617 2013-06-04 Leo Liu <sdl.web@gmail.com>
5618
5619 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
5620 (compilation-auto-jump): Suppress the "Mark set" message to give
5621 way to exit message.
5622
5623 2013-06-04 Alan Mackenzie <acm@muc.de>
5624
5625 Remove faulty optimisation from indentation calculation.
5626 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
5627 search limit based on 2000 characters back from indent-point.
5628
5629 2013-06-03 Tassilo Horn <tsdh@gnu.org>
5630
5631 * eshell/em-term.el (cl-lib): Require `cl-lib'.
5632
5633 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
5634
5635 * emacs-lisp/lisp.el: Use lexical-binding.
5636 (lisp--local-variables-1, lisp--local-variables): New functions.
5637 (lisp--local-variables-completion-table): New var.
5638 (lisp-completion-at-point): Use it complete let-bound vars.
5639
5640 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
5641 eagerly (bug#14422).
5642
5643 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
5644
5645 * autorevert.el (auto-revert-notify-enabled)
5646 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
5647 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
5648 (auto-revert-notify-handler): Handle also gfilenotify.
5649
5650 * subr.el (file-notify-handle-event): New defun. Replacing ...
5651 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
5652 Remove.
5653
5654 2013-06-03 Juri Linkov <juri@jurta.org>
5655
5656 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
5657 `M-s h .'. (Bug#14427)
5658
5659 * hi-lock.el (highlight-symbol-at-point): New alias for the new
5660 command `hi-lock-face-symbol-at-point'.
5661 (hi-lock-face-symbol-at-point): New command.
5662 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
5663 (hi-lock-menu): Add `highlight-symbol-at-point'.
5664 (hi-lock-mode): Doc fix.
5665
5666 * isearch.el (isearch-forward-symbol-at-point): New command.
5667 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
5668 (isearch-highlight-regexp): Add a regexp which matches
5669 words/symbols for word/symbol mode.
5670
5671 * subr.el (find-tag-default-bounds): New function with the body
5672 mostly moved from `find-tag-default'.
5673 (find-tag-default): Move most code to `find-tag-default-bounds',
5674 call it and apply `buffer-substring-no-properties' afterwards.
5675
5676 2013-06-03 Tassilo Horn <tsdh@gnu.org>
5677
5678 * eshell/em-term.el (eshell-term-initialize):
5679 Use `cl-intersection' rather than `intersection'.
5680
5681 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
5682
5683 * vc/log-view.el: Doc fix.
5684 (log-view-mode-map): Copy keymap from `special-mode-map'.
5685
5686 2013-06-02 Eric Ludlam <zappo@gnu.org>
5687
5688 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
5689 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
5690 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
5691 (eieio-unbound, eieio-default-superclass)
5692 (eieio--define-field-accessors, method-static, method-before)
5693 (method-primary, method-after, method-num-lists)
5694 (method-generic-before, method-generic-primary)
5695 (method-generic-after, method-num-slots)
5696 (eieio-specialized-key-to-generic-key)
5697 (eieio--check-type, class-v, class-p)
5698 (eieio-class-name, define-obsolete-function-alias)
5699 (eieio-class-parents-fast, eieio-class-children-fast)
5700 (same-class-fast-p, class-constructor, generic-p)
5701 (generic-primary-only-p, generic-primary-only-one-p)
5702 (class-option-assoc, class-option, eieio-object-p)
5703 (class-abstract-p, class-method-invocation-order)
5704 (eieio-defclass-autoload-map, eieio-defclass-autoload)
5705 (eieio-class-un-autoload, eieio-defclass)
5706 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
5707 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
5708 (eieio--defgeneric-init-form, eieio-defgeneric-form)
5709 (eieio-defgeneric-reset-generic-form)
5710 (eieio-defgeneric-form-primary-only)
5711 (eieio-defgeneric-reset-generic-form-primary-only)
5712 (eieio-defgeneric-form-primary-only-one)
5713 (eieio-defgeneric-reset-generic-form-primary-only-one)
5714 (eieio-unbind-method-implementations)
5715 (eieio--defmethod, eieio--typep)
5716 (eieio-perform-slot-validation, eieio-validate-slot-value)
5717 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
5718 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
5719 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
5720 (eieio-slot-name-index, eieio-class-slot-name-index)
5721 (eieio-set-defaults, eieio-initarg-to-attribute)
5722 (eieio-attribute-to-initarg, eieio-c3-candidate)
5723 (eieio-c3-merge-lists, eieio-class-precedence-c3)
5724 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
5725 (eieio-class-precedence-list, eieio-generic-call-methodname)
5726 (eieio-generic-call-arglst, eieio-generic-call-key)
5727 (eieio-generic-call-next-method-list)
5728 (eieio-pre-method-execution-functions, eieio-generic-call)
5729 (eieio-generic-call-primary-only, eieiomt-method-list)
5730 (eieiomt-optimizing-obarray, eieiomt-install)
5731 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
5732 (eieio-generic-form, eieio-defmethod, make-obsolete)
5733 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
5734 (defclass): Remove `eval-and-compile' from macro.
5735 (call-next-method, shared-initialize): Instead of using
5736 `scoped-class' variable, use new eieio--scoped-class, and
5737 eieio--with-scoped-class.
5738 (initialize-instance): Rename local variable 'scoped-class' to
5739 'this-class' to remove ambiguitity from old global.
5740
5741 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
5742 eieio.el.
5743 (eieio--scoped-class-stack): New variable.
5744 (eieio--scoped-class): New fcn.
5745 (eieio--with-scoped-class): New scoping macro.
5746 (eieio-defclass): Use pushnew instead of add-to-list.
5747 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
5748 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
5749 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
5750 `scoped-class' variable, use new eieio--scoped-class, and
5751 eieio--with-scoped-class.
5752
5753 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
5754
5755 2013-06-02 Tassilo Horn <tsdh@gnu.org>
5756
5757 * eshell/esh-ext.el (eshell-external-command): Pass args to
5758 `eshell-find-interpreter'.
5759 (eshell-find-interpreter): Add new second parameter ARGS.
5760
5761 * eshell/em-script.el (eshell-script-initialize): Add second arg
5762 to the function added as MATCH to `eshell-interpreter-alist'.
5763
5764 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
5765 the function added as MATCH to `eshell-interpreter-alist'.
5766
5767 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
5768 (eshell-visual-options): New defcustom.
5769 (eshell-escape-control-x): Adapt docstring.
5770 (eshell-term-initialize): Test `eshell-visual-subcommands' and
5771 `eshell-visual-options' in addition to `eshell-visual-commands'.
5772 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
5773
5774 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
5775
5776 * progmodes/python.el (python-indent-block-enders): Add break,
5777 continue and raise keywords.
5778
5779 2013-06-01 Glenn Morris <rgm@gnu.org>
5780
5781 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
5782
5783 Plain (f)boundp silences compilation warnings since Emacs 22.1.
5784 * progmodes/cc-cmds.el (delete-forward-p):
5785 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
5786 * progmodes/cc-engine.el (buffer-syntactic-context):
5787 * progmodes/cc-fonts.el (face-property-instance):
5788 * progmodes/cc-mode.el (set-keymap-parents):
5789 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
5790 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
5791 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
5792 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
5793 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
5794
5795 * progmodes/cc-vars.el (other): Emacs has this widget since
5796 at least 21.1, so don't (re)define it.
5797
5798 * eshell/em-cmpl.el (eshell-cmpl-initialize):
5799 Replace the obsolete alias pcomplete-arg-quote-list.
5800
5801 2013-06-01 Leo Liu <sdl.web@gmail.com>
5802
5803 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
5804 punctuation syntax.
5805 (inferior-octave-minimal-columns)
5806 (inferior-octave-last-column-width): New variables.
5807 (inferior-octave-track-window-width-change): New function.
5808 (inferior-octave-mode): Adjust column width so that Octave output,
5809 for example from 'ls', can fit into the window nicely.
5810
5811 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
5812
5813 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
5814 Highlight expansions inside regexp literals.
5815
5816 2013-05-31 Glenn Morris <rgm@gnu.org>
5817
5818 * obsolete/sym-comp.el (symbol-complete):
5819 Replace obsolete completion-annotate-function.
5820
5821 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
5822
5823 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
5824
5825 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
5826 New function, checks if point is inside a literal that allows
5827 expression expansion.
5828 (ruby-syntax-propertize-expansion): Use it.
5829 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
5830 around the body.
5831
5832 2013-05-30 Juri Linkov <juri@jurta.org>
5833
5834 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
5835 to "\M-si".
5836 (isearch-invisible): New variable.
5837 (isearch-forward): Doc fix.
5838 (isearch-mode): Set `isearch-invisible'
5839 to the value of `search-invisible'.
5840 (isearch-toggle-case-fold): Doc fix.
5841 (isearch-toggle-invisible): New command.
5842 (isearch-query-replace): Let-bind `search-invisible'
5843 to the value of `isearch-invisible'.
5844 (isearch-search): Use `isearch-invisible' instead of
5845 `search-invisible'. Let-bind `search-invisible'
5846 to the value of `isearch-invisible'. (Bug#11378)
5847
5848 2013-05-30 Juri Linkov <juri@jurta.org>
5849
5850 * replace.el (perform-replace): Avoid `isearch-range-invisible'
5851 call when `query-flag' is nil and `search-invisible' is non-nil.
5852 (Bug#11746)
5853
5854 2013-05-30 Glenn Morris <rgm@gnu.org>
5855
5856 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
5857
5858 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
5859 (cc-require): Suppress spurious "noruntime" warnings.
5860 (cc-require-when-compile): Use fboundp, for sake of compiler.
5861
5862 * progmodes/cc-mode.el: Move load of cc-vars before that of
5863 cc-langs (which in turn loads cc-vars), to quieten compiler.
5864
5865 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
5866
5867 * paren.el: Simplify the code.
5868 (show-paren-mode): Always start the timer.
5869 (show-paren--idle-timer): Rename from show-paren-idle-timer.
5870 (show-paren--overlay, show-paren--overlay-1): Rename from
5871 show-paren-overlay and show-paren-overlay-1, and initialize to an
5872 overlay rather than to nil.
5873 (show-paren-function): Misc cleanup and simplifications.
5874
5875 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
5876
5877 * paren.el (show-paren-data-function): New hook.
5878 (show-paren--default): New function, extracted from show-paren-function.
5879 (show-paren-function): Use show-paren-data-function.
5880
5881 2013-05-30 Glenn Morris <rgm@gnu.org>
5882
5883 * ielm.el (ielm-map, ielm-complete-symbol):
5884 Use completion-at-point rather than obsolete functions.
5885 (inferior-emacs-lisp-mode): Doc fix.
5886 Set completion-at-point-functions, rather than
5887 comint-dynamic-complete-functions.
5888
5889 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
5890 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
5891 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
5892
5893 * image.el (image-animated-p): Tweak definition.
5894
5895 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
5896 (rlogin-process-connection-type): Tweak default. Add set-after.
5897 (rlogin-host): Doc fix.
5898 (rlogin): Tweak prompt.
5899 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
5900
5901 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
5902 * progmodes/tcl.el (inferior-tcl-mode-map):
5903 Use completion-at-point rather than obsolete alias.
5904
5905 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
5906
5907 * minibuffer.el (read-file-name-completion-ignore-case):
5908 Move before completion--in-region, for eager macro expansion.
5909
5910 2013-05-29 Juri Linkov <juri@jurta.org>
5911
5912 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
5913 for total count of matching lines. Add `global-matches' for total
5914 count of matches. Rename `matches' to `lines' for count of
5915 matching lines. Add `matches' for count of matches.
5916 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
5917 to `prev-line' for line number of prev match endpt.
5918 Increment `matches' for every match. Print the number of
5919 matching lines in the header.
5920 (occur-context-lines): Rename `lines' to `curr-line'.
5921 Rename `prev-lines' to `prev-line'. (Bug#14017)
5922
5923 2013-05-29 Juri Linkov <juri@jurta.org>
5924
5925 * replace.el (perform-replace): Add `skip-read-only-count',
5926 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
5927 Increment them for corresponding conditions and report the number
5928 of skipped occurrences in the final message. (Bug#11746)
5929 (query-replace, query-replace-regexp, query-replace-regexp-eval)
5930 (replace-string, replace-regexp): Doc fix.
5931
5932 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
5933
5934 * emacs-lisp/trace.el (trace--read-args): Provide a default.
5935
5936 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
5937 prog-mode-map (bug#14504).
5938
5939 2013-05-29 Leo Liu <sdl.web@gmail.com>
5940
5941 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
5942 (octave-help): Small simplification.
5943
5944 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
5945 off the highlight first.
5946
5947 2013-05-29 Glenn Morris <rgm@gnu.org>
5948
5949 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
5950 Handle idlwave-last-system-routine-info-cons-cell being nil.
5951
5952 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
5953 (idlwave-write-paths): Simplify via with-temp-buffer.
5954
5955 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
5956 * emulation/cua-rect.el: Also load cua-base at run time.
5957
5958 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
5959 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
5960 (cperl-imenu-on-info): Require imenu.
5961
5962 2013-05-28 Alan Mackenzie <acm@muc.de>
5963
5964 Handle "capitalised keywords" correctly.
5965 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
5966
5967 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
5968
5969 * eshell/em-unix.el: Add -r option to cp.
5970
5971 2013-05-28 Glenn Morris <rgm@gnu.org>
5972
5973 * vc/vc-arch.el (vc-exec-after): Declare.
5974 (vc-switches): Autoload.
5975 * vc/vc-bzr.el: No need to require vc when compiling.
5976 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
5977 (vc-resynch-buffer, vc-dir-refresh): Declare.
5978 (vc-setup-buffer, vc-switches): Autoload.
5979 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
5980 (vc-resynch-buffer): Declare.
5981 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
5982 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
5983 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
5984 (grep-read-regexp, grep-read-files, grep-expand-template)
5985 (vc-dir-refresh): Declare.
5986 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
5987 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
5988 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
5989 * vc/vc-mtn.el (vc-exec-after): Declare.
5990 (vc-switches): Autoload.
5991 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
5992 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
5993 (vc-file-tree-walk): Declare.
5994 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
5995 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
5996 (vc-tag-precondition, vc-rename-master): Autoload.
5997 * vc/vc-svn.el (vc-exec-after): Declare.
5998 (vc-switches, vc-setup-buffer): Autoload.
5999 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
6000 Autoload.
6001 (vc-resynch-buffer): Declare.
6002
6003 * obsolete/fast-lock.el (byte-compile-warnings):
6004 Don't warn about obsolete features in this obsolete file.
6005
6006 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
6007 Move definition before use.
6008
6009 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
6010 (dun-unix-verbs): Remove dun-zippy.
6011 (dun-zippy): Remove function.
6012
6013 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
6014
6015 2013-05-27 Juri Linkov <juri@jurta.org>
6016
6017 * replace.el (replace-search): New function with code moved out
6018 from `perform-replace'.
6019 (replace-highlight, replace-dehighlight): Move function definitions
6020 up closer to `replace-search'. (Bug#11746)
6021
6022 2013-05-27 Juri Linkov <juri@jurta.org>
6023
6024 * replace.el (perform-replace): Ignore invisible matches.
6025 In addition to checking `query-replace-skip-read-only', also
6026 filter out matches by calling `run-hook-with-args-until-failure'
6027 on `isearch-filter-predicates', and also check `search-invisible'
6028 for t or call `isearch-range-invisible'.
6029 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
6030
6031 2013-05-27 Juri Linkov <juri@jurta.org>
6032
6033 * isearch.el (isearch-filter-predicates): Rename from
6034 `isearch-filter-predicate'. Doc fix. (Bug#11378)
6035 (isearch-message-prefix): Display text from the property
6036 `isearch-message-prefix' of the currently active filters.
6037 (isearch-search): Don't compare `isearch-filter-predicate' with
6038 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
6039 on `isearch-filter-predicates'. Also check `search-invisible' for t
6040 or call `isearch-range-invisible'.
6041 (isearch-filter-visible): Make obsolete.
6042 (isearch-lazy-highlight-search):
6043 Call `run-hook-with-args-until-failure' on
6044 `isearch-filter-predicates' and use `isearch-range-invisible'.
6045
6046 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
6047 `isearch-filter-predicates' instead of `funcall'ing
6048 `isearch-filter-predicate'.
6049 (Info-mode): Set `Info-isearch-filter' to
6050 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
6051
6052 * dired-aux.el (dired-isearch-filter-predicate-orig):
6053 Remove variable.
6054 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
6055 (dired-isearch-filenames-end): Add and remove
6056 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
6057 instead of changing the value of `isearch-filter-predicate'.
6058 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
6059 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
6060 Put property `isearch-message-prefix' to "filename " on
6061 `dired-isearch-filter-filenames'.
6062
6063 * wdired.el (wdired-change-to-wdired-mode):
6064 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
6065 locally instead of changing `isearch-filter-predicate'.
6066 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
6067
6068 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
6069
6070 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
6071 return the commit hash (Bug#14459). Also set the
6072 `vc-git-detached' property.
6073 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
6074 (vc-git-mode-line-string): Use the same help-echo format whether
6075 in detached mode or not, because we know the actual revision now.
6076 When in detached mode, shorten the revision to 7 chars.
6077
6078 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6079
6080 * emacs-lisp/easy-mmode.el (define-minor-mode):
6081 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
6082 mode hook and provide a docstring.
6083
6084 2013-05-27 Alan Mackenzie <acm@muc.de>
6085
6086 Remove spurious syntax-table text properties inserted by C-y.
6087 * progmodes/cc-mode.el (c-after-change): Also clear hard
6088 syntax-table property with value nil.
6089
6090 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
6091
6092 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
6093 when reading the events; the buffer layout shall not be changed.
6094
6095 2013-05-27 Leo Liu <sdl.web@gmail.com>
6096
6097 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
6098 New variable.
6099 (inferior-octave-directory-tracker): Automatically re-sync
6100 default-directory.
6101 (octave-help): Improve handling of 'See also'.
6102
6103 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6104
6105 * doc-view.el: Minor naming convention tweaks.
6106 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
6107
6108 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
6109 even if there's no `display' property yet (bug#14435).
6110
6111 2013-05-25 Eli Zaretskii <eliz@gnu.org>
6112
6113 * subr.el (unmsys--file-name): Rename from reveal-filename.
6114
6115 * Makefile.in (custom-deps, finder-data, autoloads)
6116 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
6117 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
6118 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
6119
6120 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6121
6122 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
6123 error-completion on the first 2 args of condition-case (bug#14446).
6124 Don't burp at EOB.
6125
6126 2013-05-25 Leo Liu <sdl.web@gmail.com>
6127
6128 * comint.el (comint-previous-matching-input): Do not flood the
6129 *Messages* buffer with trivial messages.
6130
6131 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6132
6133 * progmodes/flymake.el (flymake-nop): Don't return a string.
6134 (flymake-set-at): Fix typo.
6135
6136 * simple.el (read--expression): New function, extracted from
6137 eval-expression. Set completion-at-point-functions (bug#14465).
6138 (eval-expression, eval-minibuffer): Use it.
6139
6140 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
6141
6142 * progmodes/flymake.el (flymake-save-buffer-in-file)
6143 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
6144 (flymake-selected-frame, flymake-log, flymake-ins-after)
6145 (flymake-set-at, flymake-get-buildfile-from-cache)
6146 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
6147 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
6148 Refine the doc string.
6149 (flymake-get-file-name-mode-and-masks): Reformat.
6150 (flymake-get-real-file-name-function): Fix a minor bug.
6151
6152 2013-05-24 Juri Linkov <juri@jurta.org>
6153
6154 * progmodes/grep.el (grep-mode-font-lock-keywords):
6155 Support =linenumber= format used by git-grep for lines with
6156 function names. (Bug#13549)
6157
6158 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6159
6160 * progmodes/octave.el (octave-smie-rules): Return nil rather than
6161 0 after a semi-colon; it works better for smie-auto-fill.
6162 (octave--indent-new-comment-line): New function.
6163 (octave-indent-new-comment-line): Use it (indirectly).
6164 (octave-mode): Don't disable smie-auto-fill. Use add-function to
6165 modify comment-line-break-function.
6166
6167 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
6168 (smie-setup): Use add-function to set it.
6169
6170 2013-05-24 Sam Steingold <sds@gnu.org>
6171
6172 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
6173 argument (before the `interactive' argument).
6174
6175 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6176
6177 * image-mode.el (image-mode-winprops): Add winprops to
6178 image-mode-winprops-alist before running
6179 image-mode-new-window-functions.
6180 * doc-view.el (doc-view-new-window-function): Don't delay
6181 doc-view-goto-page via timers (bug#14435).
6182
6183 2013-05-24 Tassilo Horn <tsdh@gnu.org>
6184
6185 * doc-view.el: Integrate with desktop.el. (Bug#14435)
6186 (doc-view-desktop-save-buffer): New function.
6187 (doc-view-restore-desktop-buffer): New function.
6188 (desktop-buffer-mode-handlers):
6189 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
6190 handler.
6191 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
6192 `desktop-save-buffer' function.
6193
6194 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
6195
6196 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
6197 (tramp-gvfs-file-name-handler): Raise a user error when
6198 `tramp-gvfs-enabled' is nil.
6199 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
6200 Do not raise a user error when loading package. (Bug#14447)
6201
6202 * net/xesam.el: Move to obsolete/.
6203
6204 2013-05-24 Glenn Morris <rgm@gnu.org>
6205
6206 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
6207
6208 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
6209
6210 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
6211 (Info-find-node, Man-getpage-in-background): Declare.
6212
6213 * mail/unrmail.el (unrmail):
6214 Replace obsolete detect-coding-with-priority.
6215
6216 * net/socks.el (socks-split-string): Use this rather than split-string.
6217 (socks-nslookup-host): Update for above change.
6218 (dynamic-choice, s5-dynamic-choice-match)
6219 (s5-dynamic-choice-match-inline, s5-widget-value-create):
6220 Comment out unused code.
6221
6222 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
6223 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
6224 (gud-tooltip-echo-area): Make obsolete.
6225 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
6226
6227 * progmodes/js.el (js--optimize-arglist): Declare.
6228
6229 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
6230
6231 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
6232 (ediff-window-C): Declare.
6233
6234 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
6235 Tweak requires to silence compiler.
6236
6237 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
6238 (he-search-string, he-tried-table, he-expand-list)
6239 (he-init-string, he-string-member, he-substitute-string)
6240 (he-reset-string): Declare.
6241
6242 * obsolete/options.el (list-options): Use custom-variable-p,
6243 rather than obsolete alias.
6244
6245 2013-05-23 Sam Steingold <sds@gnu.org>
6246
6247 * simple.el (shell-command-on-region): Pass the `replace' argument
6248 down to `call-process-region' to comply with the doc as reported on
6249 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
6250
6251 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6252
6253 * emacs-lisp/smie.el (smie-indent-forward-token)
6254 (smie-indent-backward-token): Handle string tokens (bug#14381).
6255
6256 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6257
6258 * ielm.el (ielm-menu): New menu.
6259 (inferior-emacs-lisp-mode): Set comment-start.
6260
6261 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6262
6263 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
6264 Fix deactivate action.
6265
6266 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
6267 Add cleveref macros.
6268
6269 * lisp/textmodes/reftex-parse.el
6270 (reftex-locate-bibliography-files): Accept options for
6271 bibliography commands.
6272 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
6273 Add addbibresource. Basic Biblatex support.
6274
6275 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
6276
6277 * net/tramp-gvfs.el (top):
6278 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
6279 when loading package. (Bug#14447)
6280
6281 2013-05-23 Glenn Morris <rgm@gnu.org>
6282
6283 * progmodes/js.el: No need to load comint when compiling.
6284 (ring-insert, comint-send-string, comint-send-input)
6285 (comint-last-input-end, ido-chop): Declare.
6286
6287 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
6288 * vc/ediff-mult.el: Adjust requires.
6289 (ediff-directories-internal, ediff-directory-revisions-internal)
6290 (ediff-patch-file-internal): Declare.
6291 * vc/ediff-ptch.el: Adjust requires.
6292 (ediff-use-last-dir, ediff-buffers-internal): Declare.
6293 (ediff-find-file): Autoload.
6294 * vc/ediff-util.el: No need to load ediff when compiling.
6295 (ediff-regions-internal): Declare.
6296 * vc/ediff-wind.el: Adjust requires.
6297 (ediff-compute-toolbar-width): Define when compiling.
6298 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
6299 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
6300 (dired-get-filename, dired-get-marked-files)
6301 (ediff-last-dir-patch, ediff-patch-default-directory)
6302 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
6303 (ediff-patch-buffer-internal): Declare.
6304
6305 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
6306 (ispell-process, ispell-buffer-local-words, lm-summary)
6307 (lm-section-start, lm-section-end): Declare.
6308 (checkdoc-ispell-init): Simplify.
6309
6310 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
6311 (he-string-member, he-reset-string, he-substitute-string): Declare.
6312
6313 * eshell/em-ls.el: Adjust requires.
6314 (eshell-glob-regexp): Declare.
6315 * eshell/em-tramp.el: Adjust requires.
6316 (eshell-parse-command): Autoload.
6317 * eshell/em-xtra.el: Adjust requires.
6318 (eshell-parse-command): Autoload.
6319 * eshell/esh-ext.el: Adjust requires.
6320 (eshell-parse-command, eshell-close-handles): Autoload.
6321 * eshell/esh-io.el: Adjust requires.
6322 (eshell-output-filter): Autoload.
6323 * eshell/esh-util.el: No need to load tramp when compiling.
6324 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
6325 Declare.
6326 (eshell-parse-ange-ls): Require ange-ftp and tramp.
6327 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
6328 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
6329 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
6330 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
6331 * eshell/esh-opt.el, eshell/esh-proc.el:
6332 * eshell/esh-var.el: Adjust requires.
6333 * eshell/eshell.el: Do not require esh-util twice.
6334 (eshell-add-input-to-history): Declare.
6335 (eshell-command): Check history module is active before using it.
6336
6337 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
6338
6339 2013-05-22 Leo Liu <sdl.web@gmail.com>
6340
6341 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
6342
6343 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
6344
6345 * autorevert.el (auto-revert-notify-add-watch)
6346 (auto-revert-notify-handler): Add `attrib' for the inotify case,
6347 it indicates changes in file modification time.
6348
6349 2013-05-22 Glenn Morris <rgm@gnu.org>
6350
6351 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
6352 Always delete the autoloaded function from the noruntime and
6353 unresolved functions lists.
6354
6355 * allout.el: No need to load epa, epg, overlay when compiling.
6356 (epg-context-set-passphrase-callback, epg-list-keys)
6357 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
6358 (epg-key-user-id-list): Declare.
6359
6360 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
6361 (viper-set-parsing-style-toggling-macro)
6362 (viper-set-emacs-state-searchstyle-macros):
6363 Use called-interactively-p on Emacs.
6364 (viper-looking-back): Make it an obsolete alias. Update callers.
6365 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
6366 Use looking-back rather than viper-looking-back.
6367 (viper-tmp-insert-at-eob, viper-enlarge-region)
6368 (viper-read-string-with-history, viper-register-to-point)
6369 (viper-append-to-register, viper-change-state-to-vi)
6370 (viper-backward-char-carefully, viper-forward-char-carefully)
6371 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
6372 (viper-change-state-to-emacs): Declare.
6373 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
6374 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
6375 * emulation/viper-mous.el: Do not load viper-cmd.
6376 (viper-backward-char-carefully, viper-forward-char-carefully)
6377 (viper-forward-word, viper-adjust-window): Declare.
6378
6379 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
6380
6381 * progmodes/idlw-help.el (idlwave-help-fontify):
6382 Use called-interactively-p.
6383
6384 * term/w32console.el (w32-get-console-codepage)
6385 (w32-get-console-output-codepage): Declare.
6386
6387 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
6388 Remove unnecessary declarations.
6389 (dframe-message): Doc fix.
6390
6391 * info.el (dframe-select-attached-frame, dframe-current-frame):
6392 Declare.
6393
6394 * speedbar.el (speedbar-message): Make it an obsolete alias.
6395 Update all callers.
6396 (speedbar-with-attached-buffer)
6397 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
6398 (speedbar-with-writable): Use backquote.
6399 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
6400 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
6401 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
6402 rather than speedbar- aliases.
6403 * mail/rmail.el: Load dframe rather than speedbar when compiling.
6404 (speedbar-make-specialized-keymap, speedbar-insert-button)
6405 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
6406 (speedbar-do-function-pointer): Declare.
6407 (rmail-speedbar-button, rmail-speedbar-find-file)
6408 (rmail-speedbar-move-message):
6409 Use dframe-with-attached-buffer rather than speedbar- alias.
6410 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
6411 (dframe-message, speedbar-make-specialized-keymap)
6412 (speedbar-add-expansion-list, speedbar-mode-functions-list)
6413 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
6414 (speedbar-insert-button, dframe-select-attached-frame)
6415 (dframe-maybee-jump-to-attached-frame)
6416 (speedbar-change-initial-expansion-list)
6417 (speedbar-previously-used-expansion-list-name): Declare.
6418 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
6419 Use dframe-message, dframe-with-attached-buffer rather than
6420 speedbar- aliases.
6421 (gud-sentinel): Silence compiler.
6422 * progmodes/vhdl-mode.el (speedbar-refresh)
6423 (speedbar-do-function-pointer, speedbar-add-supported-extension)
6424 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
6425 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
6426 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
6427 (speedbar-file-lists, speedbar-make-tag-line)
6428 (speedbar-line-directory, speedbar-goto-this-file)
6429 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
6430 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
6431 (speedbar-make-button, speedbar-reset-scanners)
6432 (speedbar-files-item-info, speedbar-line-text)
6433 (speedbar-find-file-in-frame, speedbar-set-timer)
6434 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
6435 (speedbar-with-writable): Do not (re)define it.
6436 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
6437 rather than speedbar- alias.
6438
6439 2013-05-21 Leo Liu <sdl.web@gmail.com>
6440
6441 * progmodes/octave.el (octave-mode-menu): Update and re-organize
6442 menu items.
6443 (octave-mode): Tweak fill-nobreak-predicate.
6444 (inferior-octave-startup): Check process to avoid infinite loop.
6445 (inferior-octave): Pop to buffer first to show abornmal process
6446 exit information.
6447
6448 2013-05-21 Glenn Morris <rgm@gnu.org>
6449
6450 * printing.el (pr-menu-bar): Define when compiling.
6451
6452 2013-05-21 Leo Liu <sdl.web@gmail.com>
6453
6454 * progmodes/octave.el (octave-auto-fill): Remove.
6455 (octave-indent-new-comment-line): Improve.
6456 (octave-mode): Use auto fill mode through
6457 comment-line-break-function and fill-nobreak-predicate.
6458 (octave-goto-function-definition): Support DEFUN_DLD.
6459 (octave-beginning-of-defun): Small tweak.
6460 (octave-help): Show parent directory.
6461
6462 2013-05-21 Glenn Morris <rgm@gnu.org>
6463
6464 * files.el (dired-unmark):
6465 * progmodes/gud.el (gdb-input): Update declarations.
6466
6467 * calculator.el (electric, ehelp): No need to load when compiling.
6468 (Electric-command-loop, electric-describe-mode): Declare.
6469
6470 * doc-view.el (doc-view-current-converter-processes): Move before use.
6471
6472 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6473 Move MODE-set-explicitly definition before use.
6474
6475 * international/mule-diag.el (mule-diag):
6476 Don't use obsolete window-system-version.
6477
6478 * mail/feedmail.el (smtpmail): No need to load when compiling.
6479 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
6480
6481 * mail/mail-utils.el (rfc822): No need to load when compiling.
6482 (rfc822-addresses): Autoload it.
6483 (mail-strip-quoted-names): Trivial simplification.
6484
6485 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
6486 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
6487
6488 * net/snmp-mode.el (tempo): Don't duplicate requires.
6489
6490 * progmodes/prolog.el (info): No need to load when compiling.
6491 (comint): Require before shell requires it.
6492 (Info-goto-node): Autoload it.
6493 (Info-follow-nearest-node): Declare.
6494 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
6495
6496 * textmodes/artist.el (picture-mode-exit): Declare.
6497
6498 * textmodes/reftex-parse.el (reftex-parse-from-file):
6499 Trivial rewrite so the compiler can parse it better.
6500
6501 2013-05-20 Leo Liu <sdl.web@gmail.com>
6502
6503 * progmodes/octave.el (octave-help-mode-map)
6504 (octave-help-mode-finish-hook): New variables.
6505 (octave-help-mode, octave-help-mode-finish): New functions.
6506 (octave-help): Use octave-help-mode.
6507
6508 2013-05-20 Glenn Morris <rgm@gnu.org>
6509
6510 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
6511
6512 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
6513
6514 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
6515 start at point, so that expansion starting right after opening
6516 slash in a regexp is recognized.
6517 (ruby-syntax-before-regexp-re): New defvar, extracted from
6518 ruby-syntax-propertize-function. Since the value of this regexp
6519 is looked up at runtime now, we should be able to turn
6520 `ruby-syntax-methods-before-regexp' into a defcustom later.
6521 (ruby-syntax-propertize-function): Split regexp matching into two
6522 parts, for opening and closing slashes. That allows us to skip
6523 over string interpolations and support multiline regexps.
6524 Don't call `ruby-syntax-propertize-expansions', instead use another rule
6525 for them, which calls `ruby-syntax-propertize-expansion'.
6526 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
6527 call to `ruby-syntax-propertize-function'.
6528 (ruby-syntax-propertize-expansion): Extracted from
6529 `ruby-syntax-propertize-expansions'. Handles one expansion.
6530 (ruby-syntax-propertize-percent-literal): Leave point right after
6531 the percent symbol, so that the expression expansion rule can
6532 propertize the contents.
6533 (ruby-syntax-propertize-heredoc): Leave point at bol following the
6534 heredoc openers.
6535 (ruby-syntax-propertize-expansions): Remove.
6536
6537 2013-05-18 Juri Linkov <juri@jurta.org>
6538
6539 * man.el (Man-default-man-entry): Remove `-' from the end
6540 of the default value. (Bug#14400)
6541
6542 2013-05-18 Glenn Morris <rgm@gnu.org>
6543
6544 * comint.el (comint-password-prompt-regexp):
6545 Allow "password for XXX" where XXX contains colons (eg https://...).
6546
6547 2013-05-18 Leo Liu <sdl.web@gmail.com>
6548
6549 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
6550 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
6551 (octave-source-directories): Don't check process.
6552 (octave-source-directories, octave-find-definition): Doc fix.
6553
6554 2013-05-18 Glenn Morris <rgm@gnu.org>
6555
6556 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
6557 Remove backspace/delete bindings. (Bug#14392)
6558
6559 * cus-dep.el (custom-make-dependencies): Sort the output.
6560 (custom-versions-load-alist): Convert comment to doc.
6561
6562 2013-05-17 Leo Liu <sdl.web@gmail.com>
6563
6564 * newcomment.el (comment-search-backward): Stricter in finding
6565 comment start. (Bug#14303)
6566
6567 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
6568 (octave-comment-start-skip): Properly anchored.
6569
6570 2013-05-17 Leo Liu <sdl.web@gmail.com>
6571
6572 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
6573 Clean up when turned off. (Bug#14395)
6574 (smie--highlight-matching-block-overlay): No longer buffer-local.
6575 (smie-highlight-matching-block): Adjust.
6576
6577 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
6578
6579 Doc string fix for "nanoseconds" (Bug#14406).
6580 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
6581 Fix doc string typo that had "nanoseconds" instead of "microseconds".
6582
6583 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
6584
6585 * calc/calc-units.el (math-extract-units): Preserve powers
6586 of units.
6587
6588 2013-05-17 Leo Liu <sdl.web@gmail.com>
6589
6590 * subr.el (delete-consecutive-dups): New function.
6591 * ido.el (ido-set-matches-1): Use it.
6592 * progmodes/octave.el (inferior-octave-completion-table): Use it.
6593 * ido.el (ido-remove-consecutive-dups): Remove.
6594
6595 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
6596
6597 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
6598 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
6599 regexp-opt's `words'.
6600
6601 2013-05-16 Leo Liu <sdl.web@gmail.com>
6602
6603 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
6604 (smie--highlight-matching-block-overlay)
6605 (smie--highlight-matching-block-lastpos)
6606 (smie--highlight-matching-block-timer): New variables.
6607 (smie-highlight-matching-block): New function.
6608 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
6609 (smie-setup): Conditionally enable smie-blink-matching-open.
6610
6611 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
6612
6613 Sync with upstream verilog-mode r840.
6614 * progmodes/verilog-mode.el (verilog-mode-version)
6615 (verilog-mode-release-date): Update.
6616 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
6617 (verilog-sig-tieoff): Fix string error on
6618 AUTORESET with colon define, bug594. Reported by Andrew Hou.
6619 (verilog-read-decls): Fix parameters confusing
6620 AUTOINST interfaces, bug565. Reported by Leith Johnson.
6621
6622 2013-05-16 Eli Zaretskii <eliz@gnu.org>
6623
6624 * subr.el (reveal-filename): New function.
6625
6626 * loadup.el: Compute Emacs executable versions on MS-Windows,
6627 where executables have the .exe extension. Add a hard link
6628 emacs-XX.YY.ZZ.exe on MS-Windows.
6629
6630 * Makefile.in (XARGS_LIMIT): New variable.
6631 (custom-deps, finder-data, autoloads)
6632 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
6633 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
6634 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
6635 (compile-main): Limit xargs according to $(XARGS_LIMIT).
6636
6637 2013-05-16 Leo Liu <sdl.web@gmail.com>
6638
6639 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
6640 (octave-mode-menu, octave-mode-map): Remove its uses.
6641
6642 2013-05-16 Reto Zimmermann <reto@gnu.org>
6643
6644 Sync with upstream vhdl mode v3.34.2.
6645 * progmodes/vhdl-mode.el: Use `push' throughout.
6646 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
6647 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
6648 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
6649 (vhdl-actual-generic-name): New option to derive actual generic name.
6650 (vhdl-port-paste-signals): Replace formal by actual generics.
6651 (vhdl-beautify): New name for old group vhdl-align. Update users.
6652 (vhdl-beautify-options): New option.
6653 (vhdl-last-input-event): New compat alias. Use throughout.
6654 (vhdl-goto-line): Replace user level function `goto-line'.
6655 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
6656 vhdl-fix-statement-buffer.
6657 (vhdl-create-mode-menu): Add some entries.
6658 (vhdl-align-region-groups): Respect vhdl-beautify-options.
6659 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
6660 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
6661 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
6662 to force statements on one line.
6663 (vhdl-remove-trailing-spaces-region):
6664 New, split from vhdl-remove-trailing-spaces.
6665 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
6666 Respect vhdl-beautify-options.
6667 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
6668 (vhdl-update-sensitivity-list): Not add with index if exists without.
6669 Not include array index with signal. Ignore keywords in comments.
6670 (vhdl-get-visible-signals): Regexp tweaks.
6671 (vhdl-template-component-inst): Handle empty library.
6672 (vhdl-template-type): Add template for 'enum' type.
6673 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
6674 Use vhdl-replace-string.
6675 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
6676 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
6677 (vhdl-speedbar-initialize): Update for above name change.
6678 (vhdl-compose-wire-components): Fix in handling of constants.
6679 (vhdl-error-regexp-emacs-alist): New variable.
6680 (vhdl-error-regexp-add-emacs): New function;
6681 adds support for new compile.el (Emacs 22+)
6682 (vhdl-generate-makefile-1): Change target order for single lib. units.
6683 Allow use of absolute file names.
6684
6685 2013-05-16 Leo Liu <sdl.web@gmail.com>
6686
6687 * simple.el (prog-indent-sexp): Indent enclosing defun.
6688
6689 2013-05-15 Glenn Morris <rgm@gnu.org>
6690
6691 * cus-start.el (show-trailing-whitespace): Move to editing basics.
6692 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
6693 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
6694 (whitespace-highlight): Move to whitespace group.
6695
6696 * comint.el (comint-source):
6697 * pcmpl-linux.el (pcmpl-linux):
6698 * shell.el (shell-faces):
6699 * eshell/esh-opt.el (eshell-opt):
6700 * international/ccl.el (ccl): Remove empty custom groups.
6701
6702 * completion.el (dynamic-completion-mode):
6703 * jit-lock.el (jit-lock-debug-mode):
6704 * minibuffer.el (completion-in-region-mode):
6705 * type-break.el (type-break-mode-line-message-mode)
6706 (type-break-query-mode):
6707 * emulation/tpu-edt.el (tpu-edt-mode):
6708 * progmodes/subword.el (global-subword-mode, global-superword-mode):
6709 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
6710 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
6711
6712 * term/xterm.el (xterm): Change parent group to terminals.
6713
6714 * master.el (master): Remove empty custom group.
6715 (master-mode): Remove unused :group argument.
6716 * textmodes/refill.el (refill): Remove empty custom group.
6717 (refill-mode): Remove unused :group argument.
6718
6719 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
6720
6721 * cus-dep.el: Provide a feature.
6722 (custom-make-dependencies): Ignore dotfiles (dir-locals).
6723 Don't mistakenly ignore files whose basenames match a basename
6724 from preloaded-file-list (eg cedet/ede/simple.el).
6725 Add a fallback method for getting :group.
6726
6727 2013-05-15 Juri Linkov <juri@jurta.org>
6728
6729 * isearch.el (isearch-char-by-name): Rename from
6730 `isearch-insert-char-by-name'. Doc fix.
6731 (isearch-forward): Mention `isearch-char-by-name' in
6732 the docstring. (Bug#13348)
6733
6734 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
6735 `exit-minibuffer' instead of
6736 `isearch-nonincremental-exit-minibuffer'.
6737 (isearch-edit-string): Remove mention of
6738 `isearch-nonincremental-exit-minibuffer' from docstring.
6739 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
6740 (isearch-forward-exit-minibuffer)
6741 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
6742
6743 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
6744
6745 * loadup.el: Just use unversioned DOC.
6746
6747 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
6748 literals as extending to EOB.
6749 (nxml-last-fontify-end): Remove unused variable.
6750 (nxml-after-change1): Use with-silent-modifications.
6751 (nxml-extend-after-change-region): Simplify.
6752 (nxml-extend-after-change-region1): Remove function.
6753 (nxml-after-change1): Don't adjust for dependent regions.
6754 (nxml-fontify-matcher): Simplify.
6755 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
6756 (xmltok-add-dependent): Remove function.
6757 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
6758 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
6759 (xmltok-scan-prolog-after-processing-instruction-open): Treat
6760 unclosed <[[, <?, comment, and other literals as extending to EOB.
6761 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
6762 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
6763 Remove functions.
6764 (rng-do-some-validation-1): Don't mark dependent regions.
6765 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
6766 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
6767 (nxml-clear-dependent-regions): Remove functions.
6768 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
6769 (nxml-ensure-scan-up-to-date):
6770 Don't clear&mark dependent regions.
6771
6772 2013-05-15 Leo Liu <sdl.web@gmail.com>
6773
6774 * progmodes/octave.el (octave-goto-function-definition):
6775 Improve and fix callers.
6776
6777 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
6778
6779 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
6780 the setter (bug#14387).
6781
6782 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
6783 surrounding group (bug#14402).
6784
6785 2013-05-14 Juri Linkov <juri@jurta.org>
6786
6787 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
6788 (Bug#14390)
6789
6790 2013-05-14 Glenn Morris <rgm@gnu.org>
6791
6792 * progmodes/f90.el (f90-imenu-generic-expression):
6793 Fix typo in 2013-05-08 change. (Bug#14402)
6794
6795 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
6796
6797 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
6798 Remove signals for which replies are never received.
6799
6800 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
6801
6802 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
6803 (gdb-handler-alist, gdb-handler-number): Remove variables.
6804 (gdb-handler-list): New variable.
6805 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
6806 (gdb-pending-handler-p, gdb-handle-reply)
6807 (gdb-remove-all-pending-triggers): New functions.
6808 (gdb-discard-unordered-replies): New defcustom.
6809 (gdb-handler): New defstruct.
6810 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
6811 instead of gdb-pending-triggers. Update docstring.
6812 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
6813 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
6814 (gdb-var-update-handler, def-gdb-auto-update-trigger)
6815 (def-gdb-auto-update-handler, gdb-get-changed-registers)
6816 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
6817 (gdb-frame-handler): Pending triggers are now automatically managed.
6818 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
6819 Remove argument.
6820 (gdb-input): Automatically handles pending triggers. Update docstring.
6821 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
6822 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
6823 Update comments.
6824 (gdb-done-or-error): Now use gdb-handle-reply.
6825
6826 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
6827
6828 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
6829 gdb-debug-log.
6830
6831 2013-05-14 Glenn Morris <rgm@gnu.org>
6832
6833 * subr.el (user-emacs-directory-warning): New option.
6834 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
6835
6836 2013-05-14 Leo Liu <sdl.web@gmail.com>
6837
6838 * progmodes/octave.el (octave-font-lock-keywords): Fix error
6839 during redisplay.
6840 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
6841 (octave-font-lock-texinfo-comment): Fix invalid search bound
6842 error: wrong side of point.
6843
6844 2013-05-14 Glenn Morris <rgm@gnu.org>
6845
6846 * progmodes/flymake.el (flymake-xml-program): New option.
6847 (flymake-xml-init): Use it.
6848
6849 * term/xterm.el: Provide a feature.
6850
6851 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
6852
6853 2013-05-13 Glenn Morris <rgm@gnu.org>
6854
6855 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
6856 Add compat aliases as a hack workaround. (Bug#14384)
6857
6858 2013-05-13 Leo Liu <sdl.web@gmail.com>
6859
6860 * progmodes/octave.el (octave-indent-comment): Fix indentation for
6861 ###, and %!.
6862 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
6863 C-M-q.
6864 (octave-comment-start-skip): Include %!.
6865 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
6866
6867 2013-05-12 Leo Liu <sdl.web@gmail.com>
6868
6869 * progmodes/octave.el (inferior-octave-startup): Store the value
6870 of __octave_srcdir__ for octave-source-directories.
6871 (inferior-octave-check-process): New function refactored out of
6872 inferior-octave-send-list-and-digest.
6873 (octave-source-directories)
6874 (octave-find-definition-filename-function): New variables.
6875 (octave-source-directories)
6876 (octave-find-definition-default-filename): New functions.
6877 (octave-find-definition): Improve to find functions implemented in C++.
6878
6879 2013-05-12 Glenn Morris <rgm@gnu.org>
6880
6881 * calendar/diary-lib.el (diary-outlook-format-1):
6882 Don't include dayname in the output. (Bug#14349)
6883
6884 2013-05-11 Glenn Morris <rgm@gnu.org>
6885
6886 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
6887
6888 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
6889 Treat cc-provide like provide.
6890
6891 2013-05-11 Kevin Ryde <user42@zip.com.au>
6892
6893 * cus-dep.el (custom-make-dependencies):
6894 Use generated-autoload-load-name for the sake of files such
6895 such cedet/semantic/bovine/c.el, where the base file name
6896 is not in load-path. (Bug#5277)
6897
6898 2013-05-11 Glenn Morris <rgm@gnu.org>
6899
6900 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
6901 Provide features.
6902
6903 2013-05-11 Leo Liu <sdl.web@gmail.com>
6904
6905 * progmodes/octave.el (octave-indent-comment): Improve.
6906 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
6907 (octave-eldoc-function-signatures, octave-eldoc-function):
6908 New functions.
6909 (octave-mode, inferior-octave-mode): Add eldoc support.
6910
6911 2013-05-11 Richard Stallman <rms@gnu.org>
6912
6913 * epa.el (epa-decrypt-file): Take output file name as argument
6914 and read it using `interactive'.
6915
6916 2013-05-11 Leo Liu <sdl.web@gmail.com>
6917
6918 * progmodes/octave.el (octave-beginning-of-line)
6919 (octave-end-of-line): Check before using up-list because it jumps
6920 out of more syntactic contructs since moving to smie.
6921 (octave-indent-comment): New function.
6922 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
6923 (octave-begin-keywords, octave-end-keywords)
6924 (octave-reserved-words, octave-smie-bnf-table)
6925 (octave-smie-rules): Add new keywords from Octave 3.6.4.
6926
6927 2013-05-11 Glenn Morris <rgm@gnu.org>
6928
6929 * faces.el (internal-face-x-get-resource):
6930 * frame.el (ns-display-monitor-attributes-list):
6931 * calc/calc-aent.el (math-to-radians-2):
6932 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
6933 Fix declarations.
6934
6935 * calc/calc-menu.el: Make it loadable in isolation.
6936
6937 * net/eudcb-bbdb.el: Make it loadable without bbdb.
6938 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
6939 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
6940 (eudc-bbdb-query-internal): Require 'bbdb.
6941
6942 * lpr.el (lpr-headers-switches):
6943 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
6944
6945 * progmodes/sql.el (sql-login-params): Fix and improve :type.
6946
6947 * emulation/edt-mapper.el: In batch mode, error rather than hang.
6948
6949 * term.el (term-set-escape-char): Make it idempotent.
6950
6951 2013-05-10 Leo Liu <sdl.web@gmail.com>
6952
6953 * progmodes/octave.el (inferior-octave-completion-table):
6954 No longer a function and all uses changed. Use cache to speed up
6955 completion due to bug#11906.
6956 (octave-beginning-of-defun): Re-write to be more general.
6957
6958 2013-05-10 Glenn Morris <rgm@gnu.org>
6959
6960 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
6961
6962 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
6963
6964 * comint.el (comint-redirect-send-command-to-process): Use :around
6965 rather than :override for comint-redirect-filter.
6966 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
6967 Call it instead of comint-redirect-original-filter-function (which
6968 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
6969
6970 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
6971
6972 * frame.el (display-monitor-attributes-list): Add NS case.
6973 (ns-display-monitor-attributes-list): Declare.
6974
6975 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
6976
6977 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
6978
6979 2013-05-09 Glenn Morris <rgm@gnu.org>
6980
6981 * international/fontset.el (vertical-centering-font-regexp):
6982 Set standard-value.
6983
6984 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
6985
6986 * bookmark.el (bookmark-search-delay):
6987 * cus-start.el (vertical-centering-font-regexp):
6988 * ps-mule.el (ps-mule-font-info-database-default):
6989 * ps-print.el (ps-default-fg, ps-default-bg):
6990 * type-break.el (type-break-good-break-interval):
6991 * whitespace.el (whitespace-indentation-regexp)
6992 (whitespace-space-after-tab-regexp):
6993 * emacs-lisp/testcover.el (testcover-1value-functions)
6994 (testcover-noreturn-functions, testcover-progn-functions)
6995 (testcover-prog1-functions):
6996 * emulation/viper-init.el (viper-emacs-state-cursor-color):
6997 * eshell/em-glob.el (eshell-glob-translate-alist):
6998 * play/tetris.el (tetris-tty-colors):
6999 * progmodes/cpp.el (cpp-face-default-list):
7000 * progmodes/flymake.el (flymake-allowed-file-name-masks):
7001 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
7002 (idlwave-help-browser-generic-args):
7003 * progmodes/make-mode.el (makefile-special-targets-list):
7004 * progmodes/python.el (python-shell-virtualenv-path):
7005 * progmodes/verilog-mode.el (verilog-active-low-regexp)
7006 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
7007 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
7008 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
7009 * textmodes/reftex-vars.el (reftex-format-label-function):
7010 * textmodes/remember.el (remember-diary-file): Fix custom types.
7011
7012 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
7013 Add :version.
7014
7015 2013-05-09 Leo Liu <sdl.web@gmail.com>
7016
7017 * progmodes/octave.el (inferior-octave-completion-at-point):
7018 Restore file completion. (Bug#14300)
7019 (inferior-octave-startup): Fix incorrect highlighting for the
7020 first prompt.
7021
7022 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7023
7024 * progmodes/ruby-mode.el: First cut at SMIE support.
7025 (ruby-use-smie): New var.
7026 (ruby-smie-grammar): New constant.
7027 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
7028 (ruby-smie--forward-token, ruby-smie--backward-token)
7029 (ruby-smie-rules): New functions.
7030 (ruby-mode-variables): Setup SMIE if applicable.
7031
7032 2013-05-08 Eli Zaretskii <eliz@gnu.org>
7033
7034 * simple.el (line-move-visual): Signal beginning/end of buffer
7035 only if vertical-motion moved less than it was requested. Avoids
7036 silly incorrect error messages when there are display strings with
7037 multiple newlines at EOL.
7038
7039 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7040
7041 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
7042 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
7043 (prolog-char-quote-workaround):
7044 * progmodes/cperl-mode.el (cperl-under-as-char):
7045 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
7046 Mark as obsolete.
7047 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
7048 their declaration.
7049 (vhdl-mode-syntax-table-init): Remove.
7050
7051 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
7052 last change.
7053
7054 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
7055 syntax for "_".
7056 (ld-script-font-lock-keywords):
7057 Change regexps to use things like \_< and \_>.
7058
7059 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
7060 Change all regexps to use things like \_< and \_>.
7061
7062 * progmodes/autoconf.el (autoconf-definition-regexp)
7063 (autoconf-font-lock-keywords, autoconf-current-defun-function):
7064 Handle a _ with symbol syntax.
7065 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
7066
7067 * progmodes/ada-mode.el (ada-mode-abbrev-table):
7068 Consolidate declaration.
7069 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
7070 the declaration.
7071 (ada-create-syntax-table): Remove.
7072 (ada-capitalize-word): Don't mess with the syntax of "_" since it
7073 already has the right syntax nowadays.
7074 (ada-goto-next-word): Don't change the syntax of "_".
7075
7076 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
7077 with-wrapper-hook.
7078
7079 2013-05-08 Sam Steingold <sds@gnu.org>
7080
7081 * thingatpt.el (thing-at-point): Accept optional second argument
7082 NO-PROPERTIES to strip the text properties from the return value.
7083 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
7084 to `thing-at-point' instead of stripping the properties ourselves.
7085 Also, when `thing-at-point' fails to find a url, prepend "http://"
7086 to the filename at point on the assumption that the user is
7087 pointing at something like gnu.org/gnu.
7088
7089 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
7090
7091 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
7092 * faces.el (crm-separator):
7093 Silence byte-compiler.
7094
7095 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
7096 (tool-bar-map): Remove unneeded defvars.
7097
7098 2013-05-08 Leo Liu <sdl.web@gmail.com>
7099
7100 Re-work a fix for bug#10994 based on Le Wang's patch.
7101 * ido.el (ido-remove-consecutive-dups): New helper.
7102 (ido-completing-read): Use it.
7103 (ido-chop): Revert fix for bug#10994.
7104
7105 2013-05-08 Adam Spiers <emacs@adamspiers.org>
7106
7107 * cus-edit.el (custom-save-variables):
7108 Pretty-print long values. (Bug#14187)
7109
7110 2013-05-08 Glenn Morris <rgm@gnu.org>
7111
7112 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
7113 (m4-mode-syntax-table): Init in the defvar.
7114 (m4-mode-abbrev-table): Let define-derived-mode define it.
7115
7116 2013-05-08 Tom Tromey <tromey@redhat.com>
7117
7118 * progmodes/m4-mode.el (m4-mode-syntax-table):
7119 Do not treat "_" as word constituent. (Bug#14167)
7120
7121 2013-05-07 Glenn Morris <rgm@gnu.org>
7122
7123 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
7124 Remove explicit eshell-isearch-cancel-map.
7125
7126 * progmodes/f90.el (f90-smart-end-names): New option.
7127 (f90-smart-end): Doc fix.
7128 (f90-end-block-optional-name): New constant.
7129 (f90-block-match): Respect f90-smart-end-names.
7130
7131 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7132
7133 * progmodes/octave.el (octave-smie-forward-token): Be more careful
7134 about implicit semi-colons (bug#14218).
7135
7136 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7137
7138 * frame.el (display-monitor-attributes-list)
7139 (frame-monitor-attributes): New functions.
7140
7141 2013-05-06 Leo Liu <sdl.web@gmail.com>
7142
7143 * progmodes/octave.el (octave-syntax-propertize-function): Change
7144 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
7145 (octave-font-lock-keywords): Use octave-operator-regexp.
7146 (octave-completion-at-point): Rename from
7147 octave-completion-at-point-function.
7148 (inferior-octave-directory-tracker): Robustify.
7149 (octave-text-functions): Remove and fix its uses. No such things
7150 any more.
7151
7152 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7153
7154 * emacs-lisp/trace.el (trace--display-buffer): New function.
7155 (trace-make-advice): Use it.
7156
7157 2013-05-06 Juri Linkov <juri@jurta.org>
7158
7159 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
7160 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
7161 Doc fix.
7162 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
7163 in the help string. (Bug#12985)
7164
7165 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
7166
7167 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
7168
7169 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7170
7171 * progmodes/perl-mode.el: Add support for here documents.
7172 (perl-syntax-propertize-function): Match here-doc markers.
7173 (perl-syntax-propertize-special-constructs): Find their end.
7174 (perl-imenu-generic-expression): Use [:alnum:].
7175
7176 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
7177 (advice--add-function): Refresh the advice if already present
7178 (bug#14317).
7179
7180 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
7181
7182 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
7183
7184 2013-05-06 Glenn Morris <rgm@gnu.org>
7185
7186 * w32-fns.el (w32-charset-info-alist): Declare.
7187
7188 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
7189 of its defcustom properties.
7190 (eshell-cmpl-initialize): No need to load pcomplete.
7191
7192 * generic-x.el: No need to require comint when compiling.
7193
7194 * net/eudc-export.el: Make it loadable without bbdb.
7195 (top-level): Use require rather than load-library.
7196 (eudc-create-bbdb-record, eudc-bbdbify-phone)
7197 (eudc-batch-export-records-to-bbdb)
7198 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
7199 Require bbdb.
7200
7201 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7202
7203 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
7204 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
7205 some tweaks, instead.
7206
7207 2013-05-05 Leo Liu <sdl.web@gmail.com>
7208
7209 * progmodes/octave.el (octave-font-lock-keywords)
7210 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
7211 (inferior-octave-send-list-and-digest): Improve error message.
7212 (octave-mode, inferior-octave-mode): Use setq-local.
7213 (octave-help): Set info-lookup-mode.
7214
7215 2013-05-05 Richard Stallman <rms@gnu.org>
7216
7217 * vc/compare-w.el (compare-windows-whitespace):
7218 Treat no-break space as whitespace.
7219
7220 * mail/rmailsum.el (rmail-summary-rmail-update):
7221 Detect empty summary and don't change selected message.
7222 (rmail-summary-goto-msg): Likewise.
7223
7224 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
7225 Doc fixes, rename args.
7226
7227 2013-05-05 Alan Mackenzie <acm@muc.de>
7228
7229 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
7230
7231 2013-05-05 Juri Linkov <juri@jurta.org>
7232
7233 * info.el (Info-read-subfile): Use (point-min) instead of (point)
7234 to not add the length of the summary segment to the return value.
7235 (Bug#14125)
7236
7237 2013-05-05 Leo Liu <sdl.web@gmail.com>
7238
7239 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
7240 (inferior-octave-output-filter): Remove.
7241 (octave-send-region, inferior-octave-startup): Fix callers.
7242 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
7243 (octave-binary-file-extensions): New user variable.
7244 (octave-find-definition): Confirm if opening binary files.
7245 (octave-help-file): Use octave-find-definition to get the binary
7246 confirmation.
7247 (octave-help): Adjust for octave-help-file change.
7248
7249 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7250
7251 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
7252 Merge the two entries that handle function definitions.
7253 (pascal--syntax-propertize): New const.
7254 (pascal-mode): Use it. Use setq-local.
7255
7256 2013-05-04 Glenn Morris <rgm@gnu.org>
7257
7258 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
7259 (diary-from-outlook): Respect diary-from-outlook-function.
7260
7261 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7262
7263 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
7264 Move the declaration from C.
7265 (read-minibuffer, eval-minibuffer): Move from C.
7266 (completion-setup-function): Avoid minibuffer-completion-contents.
7267
7268 2013-05-03 Leo Liu <sdl.web@gmail.com>
7269
7270 * progmodes/octave.el (octave-font-lock-keywords): Do not
7271 dehighlight 'end' in comments or strings.
7272 (octave-completing-read, octave-goto-function-definition):
7273 New helpers.
7274 (octave-help-buffer): New user variable.
7275 (octave-help-file, octave-help-function): New button types.
7276 (octave-help): New command and bind it to C-h ;.
7277 (octave-find-definition): New command and bind it to M-.
7278 (user-error): Alias to error if not defined.
7279
7280 2013-05-02 Leo Liu <sdl.web@gmail.com>
7281
7282 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
7283 for \. (bug#14332)
7284 (octave-font-lock-keywords): Include [ and {.
7285
7286 2013-05-02 Leo Liu <sdl.web@gmail.com>
7287
7288 * progmodes/octave.el (inferior-octave-startup-file): Change default.
7289 (inferior-octave): Remove calling comint-mode and return the buffer.
7290 (inferior-octave-startup): Cosmetic changes.
7291
7292 2013-05-02 Leo Liu <sdl.web@gmail.com>
7293
7294 * progmodes/octave.el (octave-syntax-propertize-function):
7295 Include the case when ' is at line beginning. (Bug#14336)
7296
7297 2013-05-02 Glenn Morris <rgm@gnu.org>
7298
7299 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
7300 * desktop.el (vc-dir-mode): Just autoload it here.
7301
7302 2013-05-02 Alan Mackenzie <acm@muc.de>
7303
7304 Eliminate variable c-standard-font-lock-fontify-region-function.
7305 * progmodes/cc-mode.el
7306 (c-standard-font-lock-fontify-region-function): Remove.
7307 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
7308
7309 2013-05-01 Leo Liu <sdl.web@gmail.com>
7310
7311 * progmodes/octave.el: Compatible with older emacs-24 releases.
7312 (inferior-octave-has-built-in-variables): Remove. Built-in
7313 variables were removed from Octave in 2007.
7314 (inferior-octave-startup): Fix uses.
7315 (comint-line-beginning-position): Remove compatibility code for
7316 emacs 21.
7317
7318 2013-05-01 Juri Linkov <juri@jurta.org>
7319
7320 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
7321
7322 2013-05-01 Juri Linkov <juri@jurta.org>
7323
7324 * comint.el (comint-previous-matching-input): Don't print message
7325 "History item: %d" when `isearch-mode' is active.
7326 (comint-history-isearch-message): Print message "History item: %d"
7327 when `comint-input-ring-index' is not empty and this function is
7328 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
7329
7330 2013-05-01 Leo Liu <sdl.web@gmail.com>
7331
7332 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
7333 definitions. Use completion-at-point to insert keywords.
7334 (octave-abbrev-start): Remove.
7335 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
7336
7337 2013-04-30 Leo Liu <sdl.web@gmail.com>
7338
7339 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
7340 change.
7341
7342 2013-04-30 Alan Mackenzie <acm@muc.de>
7343
7344 Handle arbitrarily long C++ member initialisation lists.
7345 * progmodes/cc-engine.el (c-back-over-member-initializers):
7346 new function.
7347 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
7348 (most) member init lists.
7349
7350 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7351
7352 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
7353 variable.
7354
7355 2013-04-30 Leo Liu <sdl.web@gmail.com>
7356
7357 * progmodes/octave.el (octave-variables): Remove. No builtin
7358 variables any more. All converted to functions.
7359 (octave-font-lock-keywords, octave-completion-at-point-function):
7360 Fix uses.
7361 (octave-font-lock-texinfo-comment): New user variable.
7362 (octave-texinfo-font-lock-keywords): New variable for texinfo
7363 comment block.
7364 (octave-function-comment-block): New face.
7365 (octave-font-lock-texinfo-comment): New function.
7366 (octave-mode): Font lock texinfo comment block.
7367
7368 2013-04-29 Leo Liu <sdl.web@gmail.com>
7369
7370 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
7371 indexing expression.
7372 (octave-continuation-string): Do not use \.
7373 (inferior-octave-complete-impossible): Remove.
7374 (inferior-octave-completion-table)
7375 (inferior-octave-completion-at-point): Remove its uses.
7376 (inferior-octave-startup): completion_matches was introduced to
7377 Octave in 1996 so safe to assume it.
7378 (octave-function-file-comment): Improve to follow how Octave does it.
7379 (octave-update-function-file-comment): Tweak.
7380
7381 2013-04-29 Leo Liu <sdl.web@gmail.com>
7382
7383 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
7384 (inferior-octave-startup): Remove inferior-octave-startup-hook.
7385 (octave-function-file-comment): Fix typo.
7386 (octave-sync-function-file-names): Use read-char-choice.
7387
7388 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
7389
7390 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
7391 to t for the less important warnings.
7392
7393 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
7394
7395 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
7396
7397 2013-04-27 Glenn Morris <rgm@gnu.org>
7398
7399 * vc/log-view.el (log-view-current-entry):
7400 Treat "---" separator lines as part of the following rev. (Bug#14169)
7401
7402 2013-04-27 Juri Linkov <juri@jurta.org>
7403
7404 * subr.el (read-number): Doc fix about using it by interactive
7405 code letter `n'. (Bug#14254)
7406
7407 2013-04-27 Juri Linkov <juri@jurta.org>
7408
7409 * desktop.el (desktop-auto-save-timeout): New option.
7410 (desktop-file-checksum): New variable.
7411 (desktop-save): Add optional arg `auto-save' and don't auto-save
7412 if nothing changed.
7413 (desktop-auto-save-timer): New variable.
7414 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
7415 (after-init-hook): Call `desktop-auto-save-set-timer'.
7416 Suggested by Reuben Thomas <rrt@sc3d.org> in
7417 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
7418
7419 2013-04-27 Leo Liu <sdl.web@gmail.com>
7420
7421 * progmodes/octave.el (octave-function-file-p)
7422 (octave-skip-comment-forward, octave-function-file-comment)
7423 (octave-update-function-file-comment): New functions.
7424 (octave-mode-map): Bind C-c ; to
7425 octave-update-function-file-comment.
7426 (octave-mode-menu): Add octave-update-function-file-comment.
7427 (octave-mode, inferior-octave-mode): Fix doc-string.
7428 (octave-insert-defun): Conform to Octave's coding convention.
7429 (Bug#14285)
7430
7431 * files.el (basic-save-buffer): Don't let errors in
7432 before-save-hook prevent saving buffer.
7433
7434 2013-04-20 Roland Winkler <winkler@gnu.org>
7435
7436 * faces.el (read-face-name): Use completing-read if arg multiple
7437 is nil.
7438
7439 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
7440
7441 * ls-lisp.el (ls-lisp-insert-directory): If no files are
7442 displayed, move point to after the totals line.
7443 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
7444 for the details.
7445
7446 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
7447
7448 * emacs-lisp/package.el (package-autoload-ensure-default-file):
7449 Add current dir to the load-path.
7450 (package-generate-autoloads): Don't rely on
7451 autoload-ensure-default-file.
7452
7453 2013-04-26 Reuben Thomas <rrt@sc3d.org>
7454
7455 * textmodes/remember.el (remember-store-in-files): Document that
7456 the file name format is passed to `format-time-string'.
7457
7458 2013-04-26 Leo Liu <sdl.web@gmail.com>
7459
7460 * progmodes/octave.el (octave-sync-function-file-names): New function.
7461 (octave-mode): Use it in before-save-hook.
7462
7463 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
7464
7465 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
7466 (bug#14274).
7467
7468 * progmodes/octave.el (octave-smie-forward-token): Properly skip
7469 \n and comment, even if it's not an implicit ; (bug#14218).
7470
7471 2013-04-26 Glenn Morris <rgm@gnu.org>
7472
7473 * subr.el (read-number): Once more use `read' rather than
7474 `string-to-number', to trap non-numeric input. (Bug#14254)
7475
7476 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
7477
7478 * emacs-lisp/syntax.el (syntax-propertize-multiline):
7479 Use `syntax-multiline' text property consistently instead of
7480 `font-lock-multiline'. (Bug#14237)
7481
7482 2013-04-26 Glenn Morris <rgm@gnu.org>
7483
7484 * emacs-lisp/shadow.el (list-load-path-shadows):
7485 No longer necessary to check for duplicate simple.el, since
7486 2012-07-07 change to init_lread to not include installation lisp
7487 directories in load-path when running uninstalled. (Bug#14270)
7488
7489 2013-04-26 Leo Liu <sdl.web@gmail.com>
7490
7491 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
7492 (octave-mode, inferior-octave-mode): Use setq-local.
7493 (octave-not-in-string-or-comment-p): Rename to
7494 octave-in-string-or-comment-p.
7495 (octave-in-comment-p, octave-in-string-p)
7496 (octave-in-string-or-comment-p): Replace defsubst with defun.
7497
7498 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
7499
7500 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
7501
7502 2013-04-25 Bastien Guerry <bzg@gnu.org>
7503
7504 * textmodes/remember.el (remember-data-directory)
7505 (remember-directory-file-name-format): Fix custom types.
7506
7507 2013-04-25 Leo Liu <sdl.web@gmail.com>
7508
7509 * progmodes/octave.el (octave-completion-at-point-function):
7510 Make use of inferior octave process.
7511 (octave-initialize-completions): Remove.
7512 (inferior-octave-completion-table): New function.
7513 (inferior-octave-completion-at-point): Use it.
7514 (octave-completion-alist): Remove.
7515
7516 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7517
7518 * progmodes/opascal.el: Use font-lock and syntax-propertize.
7519 (opascal-mode-syntax-table): New var.
7520 (opascal-literal-kind, opascal-is-literal-end)
7521 (opascal-literal-token-at): Rewrite.
7522 (opascal--literal-start-re, opascal-font-lock-keywords)
7523 (opascal--syntax-propertize): New constants.
7524 (opascal-font-lock-defaults): Adjust.
7525 (opascal-mode): Use them. Set comment-<foo> variables as well.
7526 (delphi-comment-face, opascal-comment-face, delphi-string-face)
7527 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
7528 (delphi-other-face, opascal-other-face): Remove face variables.
7529 (opascal-save-state): Remove macro.
7530 (opascal-fontifying-progress-step): Remove constant.
7531 (opascal--ignore-changes): Remove var.
7532 (opascal-set-token-property, opascal-parse-next-literal)
7533 (opascal-is-stable-literal, opascal-complete-literal)
7534 (opascal-is-literal-start, opascal-face-of)
7535 (opascal-parse-region, opascal-parse-region-until-stable)
7536 (opascal-fontify-region, opascal-after-change)
7537 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
7538 (opascal-debug-parse-region, opascal-debug-parse-window)
7539 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
7540 (opascal-debug-fontify-buffer): Remove.
7541 (opascal-debug-mode-map): Adjust accordingly.
7542
7543 2013-04-25 Leo Liu <sdl.web@gmail.com>
7544
7545 Merge octave-mod.el and octave-inf.el into octave.el with some
7546 cleanups.
7547 * progmodes/octave.el: New file renamed from octave-mod.el.
7548 * progmodes/octave-inf.el: Merged into octave.el.
7549 * progmodes/octave-mod.el: Renamed to octave.el.
7550
7551 2013-04-25 Tassilo Horn <tsdh@gnu.org>
7552
7553 * textmodes/reftex-vars.el
7554 (reftex-label-ignored-macros-and-environments): New defcustom.
7555
7556 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
7557
7558 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7559
7560 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
7561 (smie-indent-keyword): Improve the check to ensure that the next
7562 comment is really on the same line.
7563 (smie-indent-comment): Don't align with a subsequent closer (or eob).
7564
7565 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
7566 semi-colons if the line is not otherwise empty (bug#14218).
7567
7568 2013-04-25 Glenn Morris <rgm@gnu.org>
7569
7570 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
7571
7572 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
7573
7574 * progmodes/opascal.el (opascal-set-token-property): Rename from
7575 opascal-set-text-properties and only set `token' (bug#14134).
7576 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
7577 (opascal-literal-text-properties): Remove.
7578 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
7579 Adjust callers.
7580
7581 2013-04-24 Reuben Thomas <rrt@sc3d.org>
7582
7583 * textmodes/remember.el (remember-handler-functions): Add an
7584 option for a new handler `remember-store-in-files'.
7585 (remember-data-directory, remember-directory-file-name-format):
7586 New options.
7587 (remember-store-in-files): New function to store remember notes
7588 as separate files within a directory.
7589
7590 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
7591
7592 * progmodes/compile.el (compilation-next-error-function):
7593 Pass "formats" to compilation-find-file (bug#11777).
7594
7595 2013-04-24 Glenn Morris <rgm@gnu.org>
7596
7597 * vc/vc-bzr.el (vc-bzr-print-log):
7598 * vc/vc-hg.el (vc-hg-print-log):
7599 * vc/vc-svn.el (vc-svn-print-log):
7600 Fix START-REVISION with LIMIT != 1. (Bug#14168)
7601
7602 * vc/vc-bzr.el (vc-bzr-print-log):
7603 * vc/vc-cvs.el (vc-cvs-print-log):
7604 * vc/vc-git.el (vc-git-print-log):
7605 * vc/vc-hg.el (vc-hg-print-log):
7606 * vc/vc-mtn.el (vc-mtn-print-log):
7607 * vc/vc-rcs.el (vc-rcs-print-log):
7608 * vc/vc-sccs.el (vc-sccs-print-log):
7609 * vc/vc-svn.el (vc-svn-print-log):
7610 * vc/vc.el (vc-print-log-internal): Doc fixes.
7611
7612 2013-04-23 Glenn Morris <rgm@gnu.org>
7613
7614 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
7615 Remove venerable code attempting to avoid substitute-command-keys.
7616
7617 2013-04-23 Tassilo Horn <tsdh@gnu.org>
7618
7619 * textmodes/reftex-vars.el (reftex-label-regexps):
7620 Call `reftex-compile-variables' after changes to this variable.
7621
7622 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
7623
7624 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
7625 Use lexical-binding.
7626 (jit-lock-force-redisplay): Use markers, check buffer's continued
7627 existence and beware narrowed buffers.
7628 (jit-lock-fontify-now): Adjust call accordingly.
7629
7630 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
7631
7632 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
7633 to avoid misleading the user.
7634
7635 2013-04-22 Leo Liu <sdl.web@gmail.com>
7636
7637 * info-look.el: Prefer latex2e.info. (Bug#14240)
7638
7639 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
7640
7641 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
7642
7643 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
7644 * net/tramp.el (tramp-call-process): ... here.
7645 (tramp-set-completion-function, tramp-parse-putty):
7646 * net/tramp-adb.el (tramp-adb-execute-adb-command):
7647 * net/tramp-gvfs.el (tramp-gvfs-send-command):
7648 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
7649 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
7650 (tramp-call-local-coding-command): Use `tramp-call-process'
7651 instead of `tramp-compat-call-process'.
7652
7653 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
7654 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
7655 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
7656 (tramp-find-inline-compress): Improve traces.
7657 (tramp-maybe-send-script): Check for Perl binary.
7658 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
7659
7660 2013-04-22 Daiki Ueno <ueno@gnu.org>
7661
7662 * epg.el (epg-context-pinentry-mode): New function.
7663 (epg-context-set-pinentry-mode): New function.
7664 (epg--start): Pass --pinentry-mode option to gpg command.
7665
7666 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
7667
7668 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
7669 `comint-dynamic-complete' is obsolete since 24.1, replaced by
7670 `completion-at-point'. (Bug#13774)
7671
7672 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
7673 default key binding for `describe-distribution' has been moved to
7674 `C-h C-o'. (Bug#13970)
7675
7676 2013-04-21 Glenn Morris <rgm@gnu.org>
7677
7678 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
7679 Add doc strings.
7680 (vc-print-log): Clarify interactive prompt.
7681
7682 2013-04-20 Glenn Morris <rgm@gnu.org>
7683
7684 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
7685 No longer include timestamp etc information.
7686
7687 2013-04-20 Roland Winkler <winkler@gnu.org>
7688
7689 * faces.el (read-face-name): Bug fix, return just one face if arg
7690 multiple is nil. (Bug#14209)
7691
7692 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7693
7694 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
7695 (remove-function): Autoload.
7696
7697 * comint.el (comint-redirect-original-filter-function): Remove.
7698 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
7699 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
7700 (vc-cvs-annotate-command):
7701 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
7702 * progmodes/prolog.el (prolog-consult-compile):
7703 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
7704 Use add/remove-function instead.
7705 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
7706 (gud-tooltip-process-output, gud-tooltip-tips):
7707 Use add/remove-function instead.
7708 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
7709 (scheme-interaction-mode, exit-scheme-interaction-mode):
7710 Use add/remove-function instead.
7711
7712 * vc/vc-dispatcher.el: Use lexical-binding.
7713 (vc--process-sentinel): Rename from vc-process-sentinel.
7714 Change last arg to be the code to run. Don't use vc-previous-sentinel
7715 and vc-sentinel-commands any more.
7716 (vc-exec-after): Allow code to be a function. Use add/remove-function.
7717 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
7718
7719 2013-04-19 Masatake YAMATO <yamato@redhat.com>
7720
7721 * progmodes/sh-script.el (sh-imenu-generic-expression):
7722 Handle function names with a single character. (Bug#14111)
7723
7724 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
7725
7726 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
7727 for subroutines defined in an eval (bug#14182).
7728
7729 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7730
7731 * bookmark.el (bookmark-completing-read): Improve handling of empty
7732 string (bug#14176).
7733
7734 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
7735
7736 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
7737
7738 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
7739
7740 New faster Imenu implementation (bug#14058).
7741 * progmodes/python.el:
7742 (python-imenu-prev-index-position):
7743 (python-imenu-format-item-label-function)
7744 (python-imenu-format-parent-item-label-function)
7745 (python-imenu-format-parent-item-jump-label-function):
7746 New vars.
7747 (python-imenu-format-item-label)
7748 (python-imenu-format-parent-item-label)
7749 (python-imenu-format-parent-item-jump-label)
7750 (python-imenu--put-parent, python-imenu--build-tree)
7751 (python-imenu-create-index, python-imenu-create-flat-index)
7752 (python-util-popn): New functions.
7753 (python-mode): Set imenu-create-index-function to
7754 python-imenu-create-index.
7755
7756 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
7757
7758 * winner.el (winner-active-region): Use region-active-p, activate-mark
7759 and deactivate-mark (bug#14225).
7760
7761 * simple.el (deactivate-mark): Don't inline it.
7762
7763 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
7764
7765 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
7766
7767 2013-04-18 Tassilo Horn <tsdh@gnu.org>
7768
7769 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
7770 file extensions from the archive-mode entry in order to prefer
7771 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
7772
7773 2013-04-18 Leo Liu <sdl.web@gmail.com>
7774
7775 * bindings.el (help-event-list): Add ?\?.
7776
7777 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
7778
7779 * subr.el (with-wrapper-hook): Declare obsolete.
7780 * simple.el (filter-buffer-substring-function): New hook.
7781 (filter-buffer-substring): Use it.
7782 (filter-buffer-substring-functions): Mark obsolete.
7783 * minibuffer.el (completion-in-region-function): New hook.
7784 (completion-in-region): Use it.
7785 (completion-in-region-functions): Mark obsolete.
7786 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
7787 * abbrev.el (abbrev-expand-function): New hook.
7788 (expand-abbrev): Use it.
7789 (abbrev-expand-functions): Mark obsolete.
7790 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
7791 and :filter-return.
7792
7793 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
7794
7795 * progmodes/python.el (python-nav--syntactically): Fix cornercases
7796 and do not care about match data.
7797
7798 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
7799
7800 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
7801 completion tables when completing error conditions and
7802 `declare' arguments.
7803 (lisp-complete-symbol, field-complete): Mark as obsolete.
7804 (check-parens): Unmatched parens are user errors.
7805 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
7806
7807 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
7808
7809 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
7810 command changed buffer (ie. `flyspell-pre-buffer' is not current
7811 buffer), which prevents making decisions based on invalid value of
7812 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
7813 cause an error when `flyspell-pre-point' was nil after switching
7814 buffers.
7815 (flyspell-post-command-hook): No longer needs to change buffers when
7816 checking pre-word. While at it remove unnecessary progn.
7817
7818 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
7819
7820 * textmodes/ispell.el (ispell-add-per-file-word-list):
7821 Fix `flyspell-correct-word-before-point' error when accepting
7822 words and `coment-padding' is an integer by using
7823 `comment-normalize-vars' (Bug #14214).
7824
7825 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
7826
7827 New defun movement commands.
7828 * progmodes/python.el (python-nav--syntactically)
7829 (python-nav--forward-defun, python-nav-backward-defun)
7830 (python-nav-forward-defun): New functions.
7831
7832 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
7833
7834 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
7835 (python-syntax-context): Use named compiler-macro for backwards
7836 compatibility with Emacs 24.x.
7837
7838 2013-04-17 Leo Liu <sdl.web@gmail.com>
7839
7840 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
7841 octave-hide-process-buffer.
7842
7843 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
7844
7845 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
7846 (bug#14216).
7847
7848 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
7849
7850 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
7851 Fix adjustment of offset when receiving incomplete responses from GDB
7852 (bug#14129).
7853
7854 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
7855
7856 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
7857 python-mode-abbrev-table.
7858 (python-skeleton-define): Adjust accordingly.
7859 (python-mode-abbrev-table): New table that inherits from it so that
7860 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
7861
7862 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
7863 (abbrev-symbol): Use it.
7864 (abbrev--before-point): Use it since we already handle inheritance.
7865
7866 2013-04-16 Leo Liu <sdl.web@gmail.com>
7867
7868 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
7869 binding to info-lookup-symbol.
7870
7871 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
7872
7873 * minibuffer.el (completion--twq-all):
7874 * term/ns-win.el (ns-initialize-window-system):
7875 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
7876
7877 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
7878
7879 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
7880 global bindings.
7881
7882 * doc-view.el (doc-view-start-process): Handle url-handler directories.
7883
7884 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
7885
7886 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
7887 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
7888 to nil.
7889 (ruby-end-of-defun): Remove the unused arg, change the docstring
7890 to reflect that this function is only used as the value of
7891 `end-of-defun-function'.
7892 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
7893 to reflect an earlier change that beginning/end-of-defun functions
7894 jump between methods in a class definition, as well as top-level
7895 functions.
7896
7897 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
7898
7899 * minibuffer.el (minibuffer-complete): Don't just scroll
7900 a *Completions* that's been iconified.
7901 (minibuffer-force-complete): Make sure repetitions do cycle when going
7902 through completion-in-region -> minibuffer-complete.
7903
7904 2013-04-15 Alan Mackenzie <acm@muc.de>
7905
7906 Correct the placement of c-cpp-delimiters when there're #s not at
7907 col 0.
7908
7909 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
7910 place a submatch around the #.
7911 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
7912 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
7913 on the #, not BOL.
7914
7915 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
7916
7917 * emacs-lisp/nadvice.el: Properly test names when adding advice.
7918 (advice--member-p): New arg `name'.
7919 (advice--add-function, advice-member-p): Use it (bug#14202).
7920
7921 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
7922
7923 Reformulate java imenu-generic-expression.
7924 The old expression contained ill formed regexps.
7925
7926 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
7927 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
7928 (cc-imenu-java-method-arg-regexp): New defconsts.
7929 (cc-imenu-java-build-type-args-regex): New defun.
7930 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
7931 handling of spaces in the regexp.
7932
7933 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7934
7935 * textmodes/ispell.el (ispell-command-loop): Remove
7936 flyspell highlight of a word when ispell accepts it (bug #14178).
7937
7938 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
7939
7940 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
7941 uses code from the previous `ange-ftp-run-real-handler'.
7942 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
7943 only in case that function exist. This is needed for proper
7944 unloading of Tramp.
7945
7946 2013-04-15 Tassilo Horn <tsdh@gnu.org>
7947
7948 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
7949
7950 * textmodes/reftex.el (reftex-compile-variables): Use it.
7951
7952 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
7953
7954 * files.el (normal-mode): Only use default major-mode if no other mode
7955 was specified.
7956
7957 * emacs-lisp/trace.el (trace-values): New function.
7958
7959 * files.el: Allow : in local variables (bug#14089).
7960 (hack-local-variable-regexp): New var.
7961 (hack-local-variables-prop-line, hack-local-variables): Use it.
7962
7963 2013-04-13 Roland Winkler <winkler@gnu.org>
7964
7965 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
7966 data before it gets modified by bibtex-beginning-of-entry.
7967
7968 2013-04-13 Roland Winkler <winkler@gnu.org>
7969
7970 * textmodes/bibtex.el (bibtex-url): Doc fix.
7971
7972 2013-04-13 Roland Winkler <winkler@gnu.org>
7973
7974 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
7975 does not visit a BibTeX file, exclude it from the list of buffers
7976 returned by bibtex-initialize.
7977
7978 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
7979
7980 * window.el (split-window): Remove interactive form, since as a
7981 command this function is a special case of split-window-below.
7982 Correct doc string.
7983
7984 2013-04-12 Roland Winkler <winkler@gnu.org>
7985
7986 * faces.el (read-face-name): Do not override value of arg default.
7987 Allow single faces and strings as default values. Remove those
7988 elements from return value that are not faces.
7989 (describe-face): Simplify.
7990 (face-at-point): New optional args thing and multiple so that this
7991 function can provide the same functionality previously provided by
7992 read-face-name.
7993 (make-face-bold, make-face-unbold, make-face-italic)
7994 (make-face-unitalic, make-face-bold-italic, invert-face)
7995 (modify-face, read-face-and-attribute): Use face-at-point.
7996
7997 * cus-edit.el (customize-face, customize-face-other-window)
7998 * cus-theme.el (custom-theme-add-face)
7999 * face-remap.el (buffer-face-set)
8000 * facemenu.el (facemenu-set-face): Use face-at-point.
8001
8002 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
8003
8004 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
8005
8006 2013-04-10 Tassilo Horn <tsdh@gnu.org>
8007
8008 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
8009 off leading { and trailing } from field values.
8010
8011 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
8012
8013 * emacs-lisp/timer.el (timer--check): New function.
8014 (timer--time, timer-set-function, timer-event-handler): Use it.
8015 (timer-set-idle-time): Simplify.
8016 (timer--activate): CSE.
8017 (timer-event-handler): Give more info in error message.
8018 (internal-timer-start-idle): New function, moved from C.
8019
8020 * mpc.el (mpc-proc): Add `restart' argument.
8021 (mpc-proc-cmd): Use it.
8022 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
8023 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
8024 less often.
8025
8026 2013-04-10 Masatake YAMATO <yamato@redhat.com>
8027
8028 * progmodes/sh-script.el: Implement `sh-mode' own
8029 `add-log-current-defun-function' (bug#14112).
8030 (sh-current-defun-name): New function.
8031 (sh-mode): Use the function.
8032
8033 2013-04-09 Bastien Guerry <bzg@gnu.org>
8034
8035 * simple.el (choose-completion-string): Fix docstring (bug#14163).
8036
8037 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
8038
8039 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
8040
8041 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
8042 timer (bug#14156).
8043
8044 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
8045
8046 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
8047 declaration.
8048
8049 2013-04-07 Leo Liu <sdl.web@gmail.com>
8050
8051 * pcmpl-x.el: New file.
8052
8053 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
8054
8055 Do not set x-display-name until X connection is established.
8056 This is needed to prevent from weird situation described at
8057 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
8058 * frame.el (make-frame): Set x-display-name after call to
8059 window system initialization function, not before.
8060 * term/x-win.el (x-initialize-window-system): Add optional
8061 display argument and use it.
8062 * term/w32-win.el (w32-initialize-window-system):
8063 * term/ns-win.el (ns-initialize-window-system):
8064 * term/pc-win.el (msdos-initialize-window-system):
8065 Add compatible optional display argument.
8066
8067 2013-04-06 Eli Zaretskii <eliz@gnu.org>
8068
8069 * files.el (normal-backup-enable-predicate): On MS-Windows and
8070 MS-DOS compare truenames of temporary-file-directory and of the
8071 file, so that 8+3 aliases (usually found in $TEMP on Windows)
8072 don't fail comparison by compare-strings. Also, compare file
8073 names case-insensitively on MS-Windows and MS-DOS.
8074
8075 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8076
8077 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
8078 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
8079
8080 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
8081
8082 * whitespace.el (whitespace-color-on, whitespace-color-off):
8083 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
8084
8085 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
8086
8087 * ispell.el (ispell-set-spellchecker-params):
8088 Really set `ispell-args' for all equivs.
8089
8090 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8091
8092 * ido.el (ido-completions): Use extra elements of ido-decorations
8093 (bug#14143).
8094 (ido-decorations): Update docstring.
8095
8096 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
8097
8098 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
8099 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
8100 nil during initialization, in order not to miss changes since the
8101 file was opened. (Bug#14140)
8102
8103 2013-04-05 Leo Liu <sdl.web@gmail.com>
8104
8105 * kmacro.el (kmacro-call-macro): Fix bug#14135.
8106
8107 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
8108
8109 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
8110
8111 2013-04-04 Glenn Morris <rgm@gnu.org>
8112
8113 * electric.el (electric-pair-inhibit-predicate): Add :version.
8114
8115 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
8116
8117 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
8118 when a package is required several times (bug#14082).
8119
8120 2013-04-04 Roland Winkler <winkler@gnu.org>
8121
8122 * faces.el (read-face-name): Behave as promised by the docstring.
8123 Assume that arg default is a list of faces.
8124 (describe-face): Call read-face-name with list of default faces.
8125
8126 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8127
8128 * bookmark.el: Fix deletion of bookmarks (bug#13972).
8129 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
8130 (bookmark-bmenu-execute-deletions): Only skip first line if it's
8131 the header.
8132 (bookmark-exit-hook-internal): Save even if list is empty.
8133
8134 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
8135
8136 * emacs-lisp/package.el (package-pinned-packages): New var.
8137 (package--add-to-archive-contents): Obey it (bug#14118).
8138
8139 2013-04-03 Alan Mackenzie <acm@muc.de>
8140
8141 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
8142 Also adapt to the new values of element 7 of a parse state.
8143
8144 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
8145 parameter `not-in-delimiter'. Handle being inside comment opener.
8146 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
8147 character in case we're typing a '*' after a '/'.
8148 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
8149 instead by passing the parameter to c-state-pp-to-literal.
8150
8151 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
8152 for elt. 7 of a parse state.
8153
8154 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
8155
8156 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
8157 * international/latin1-disp.el, international/mule-util.el:
8158 * language/cyril-util.el, language/european.el, language/ind-util.el:
8159 * language/lao-util.el, language/thai.el, language/tibet-util.el:
8160 * language/tibetan.el, language/viet-util.el:
8161 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
8162
8163 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
8164
8165 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
8166 (electric-pair-post-self-insert-function): Use it.
8167 (electric-pair-default-inhibit): New function, extracted from
8168 electric-pair-post-self-insert-function.
8169
8170 2013-03-31 Roland Winkler <winkler@gnu.org>
8171
8172 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
8173
8174 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8175
8176 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
8177
8178 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
8179
8180 Un-indent after "pass" and "return" statements (Bug#13888)
8181 * progmodes/python.el (python-indent-block-enders): New var.
8182 (python-indent-calculate-indentation): Use it.
8183
8184 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
8185
8186 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
8187 defun. Defining it as defalias could introduce too eager
8188 byte-compiler optimization. (Bug#14030)
8189
8190 2013-03-30 Chong Yidong <cyd@gnu.org>
8191
8192 * iswitchb.el (iswitchb-read-buffer): Fix typo.
8193
8194 2013-03-30 Leo Liu <sdl.web@gmail.com>
8195
8196 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
8197 (kmacro-execute-from-register): Pass the keyboard macro to
8198 kmacro-call-macro or repeating won't work correctly.
8199
8200 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
8201
8202 * progmodes/subword.el: Back to using `forward-symbol'.
8203
8204 * subr.el (forward-whitespace, forward-symbol)
8205 (forward-same-syntax): Move from thingatpt.el.
8206
8207 2013-03-29 Leo Liu <sdl.web@gmail.com>
8208
8209 * kmacro.el (kmacro-to-register): New command.
8210 (kmacro-execute-from-register): New function.
8211 (kmacro-keymap): Bind to 'x'. (Bug#14071)
8212
8213 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
8214
8215 * mpc.el: Use defvar-local and setq-local.
8216 (mpc--proc-connect): Connection failures are not bugs.
8217 (mpc-mode-map): `follow-link' only applies to the buffer's content.
8218 (mpc-volume-map): Bind to the up-events.
8219
8220 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
8221
8222 * progmodes/subword.el (superword-mode): Use `forward-sexp'
8223 instead of `forward-symbol'.
8224
8225 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
8226
8227 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
8228 (edebug--recursive-edit): Use it.
8229 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
8230 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
8231
8232 2013-03-28 Leo Liu <sdl.web@gmail.com>
8233
8234 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
8235
8236 2013-03-27 Eli Zaretskii <eliz@gnu.org>
8237
8238 * facemenu.el (list-colors-callback): New defvar.
8239 (list-colors-redisplay): New function.
8240 (list-colors-display): Install list-colors-redisplay as the
8241 revert-buffer-function. (Bug#14063)
8242
8243 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
8244
8245 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
8246 and suffixes don't overlap (bug#14061).
8247
8248 * case-table.el: Use lexical-binding.
8249 (case-table-get-table): New function.
8250 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
8251
8252 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
8253
8254 * progmodes/subword.el: Add `superword-mode' to do word motion
8255 over symbol_words (parallels and leverages `subword-mode' which
8256 does word motion inside MixedCaseWords).
8257
8258 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
8259
8260 * eshell/em-unix.el: Move su and sudo to...
8261 * eshell/em-tramp.el: ...Eshell tramp module.
8262
8263 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
8264
8265 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
8266 Change return value to be a sexp. Delay `get-buffer' to after
8267 restoring the desktop (bug#13951).
8268
8269 2013-03-26 Leo Liu <sdl.web@gmail.com>
8270
8271 * register.el: Move semantic tag handling back to
8272 cedet/semantic/senator.el. (Bug#14052)
8273
8274 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
8275
8276 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
8277 into the prompt either (bug#13963).
8278
8279 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
8280
8281 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
8282 part of "(error-foo)".
8283
8284 2013-03-24 Juri Linkov <juri@jurta.org>
8285
8286 * replace.el (list-matching-lines-prefix-face): New defcustom.
8287 (occur-1): Pass `list-matching-lines-prefix-face' to the function
8288 `occur-engine' if `face-differs-from-default-p' returns t.
8289 (occur-engine): Add `,' inside backquote construct to evaluate
8290 `prefix-face'. Propertize the prefix with the `prefix-face' face.
8291 Pass `prefix-face' to the functions `occur-context-lines' and
8292 `occur-engine-add-prefix'.
8293 (occur-engine-add-prefix, occur-context-lines): Add optional arg
8294 `prefix-face' and propertize the prefix with `prefix-face'.
8295 (Bug#14017)
8296
8297 2013-03-24 Leo Liu <sdl.web@gmail.com>
8298
8299 * nxml/rng-valid.el (rng-validate-while-idle)
8300 (rng-validate-quick-while-idle): Guard against deleted buffer.
8301 (Bug#13999)
8302
8303 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
8304 is the last entry in kill-buffer-hook.
8305
8306 * files.el (kill-buffer-hook): Doc fix.
8307
8308 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
8309
8310 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
8311 Make it safe-local.
8312
8313 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
8314
8315 2013-03-23 Leo Liu <sdl.web@gmail.com>
8316
8317 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
8318 Remove.
8319
8320 * nxml/rng-valid.el (rng-validate-mode)
8321 (rng-after-change-function, rng-do-some-validation):
8322 * nxml/rng-maint.el (rng-validate-buffer):
8323 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
8324 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
8325 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
8326 (nxml-extend-after-change-region): Use with-silent-modifications.
8327
8328 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
8329 timer-idle-list.
8330
8331 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
8332 (rng-next-error-1, rng-previous-error-1): Do not let-bind
8333 timer-idle-list. (Bug#13999)
8334
8335 2013-03-23 Juri Linkov <juri@jurta.org>
8336
8337 * info.el (info-index-match): New face.
8338 (Info-index, Info-apropos-matches): Add a nested subgroup to the
8339 main pattern and add text properties with the new face to matches
8340 in index entries relative to the beginning of the index entry.
8341 (Bug#14015)
8342
8343 2013-03-21 Eric Ludlam <zappo@gnu.org>
8344
8345 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
8346 Inhibit read only while inserting objects.
8347
8348 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
8349
8350 * progmodes/cfengine.el: Update docs to mention
8351 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
8352 symbol motion. Remove "_" from the word syntax.
8353
8354 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
8355
8356 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
8357 syntax for both `cfengine2-mode' and `cfengine3-mode'.
8358
8359 2013-03-20 Juri Linkov <juri@jurta.org>
8360
8361 * info.el (Info-next-reference-or-link)
8362 (Info-prev-reference-or-link): New functions.
8363 (Info-next-reference, Info-prev-reference): Use them.
8364 (Info-try-follow-nearest-node): Handle footnote navigation.
8365 (Info-fontify-node): Fontify footnotes. (Bug#13989)
8366
8367 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
8368
8369 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
8370 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
8371
8372 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
8373
8374 Suppress unnecessary non-ASCII chatter during build process.
8375 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
8376 (batch-skkdic-convert): Suppress most of the chatter.
8377 It's not needed so much now that machines are faster,
8378 and its non-ASCII component was confusing; see Dmitry Gutov in
8379 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
8380
8381 2013-03-20 Leo Liu <sdl.web@gmail.com>
8382
8383 * ido.el (ido-chop): Fix bug#10994.
8384
8385 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
8386
8387 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
8388 Remove vars.
8389 (whitespace-color-on, whitespace-color-off):
8390 Use `font-lock-fontify-buffer' (Bug#13817).
8391
8392 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
8393
8394 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
8395 remapping in mode-line.
8396 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
8397
8398 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
8399
8400 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
8401 value for `whitespace-line' face (Bug#13875).
8402 (whitespace-font-lock-keywords): Change description.
8403 (whitespace-color-on): Don't save `font-lock-keywords' value, save
8404 the constructed keywords instead.
8405 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
8406
8407 2013-03-19 Leo Liu <sdl.web@gmail.com>
8408
8409 * progmodes/compile.el (compilation-display-error): New command.
8410 (compilation-mode-map, compilation-minor-mode-map): Bind it to
8411 C-o. (Bug#13992)
8412
8413 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
8414
8415 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
8416
8417 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
8418
8419 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
8420
8421 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
8422
8423 * net/tramp-compat.el (tramp-compat-user-error): New defun.
8424
8425 * net/tramp-adb.el (tramp-adb-handle-shell-command):
8426 * net/tramp-gvfs.el (top):
8427 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
8428 (tramp-handle-shell-command): Use it.
8429 (tramp-dissect-file-name): Raise an error when hostname is a
8430 method name, and neither method nor user is specified.
8431
8432 * net/trampver.el: Update release number.
8433
8434 2013-03-18 Leo Liu <sdl.web@gmail.com>
8435
8436 Make sure eldoc can be turned off properly.
8437 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
8438 eldoc-mode.
8439 (eldoc-display-message-p): Revert last change.
8440 (eldoc-display-message-no-interference-p)
8441 (eldoc-print-current-symbol-info): Tweak.
8442
8443 2013-03-18 Tassilo Horn <tsdh@gnu.org>
8444
8445 * doc-view.el (doc-view-new-window-function): Check the new window
8446 overlay's display property instead the char property of the
8447 buffer's first char. Use `with-selected-window' instead of
8448 `save-window-excursion' with `select-window'.
8449 (doc-view-document->bitmap): Check the current doc-view overlay's
8450 display property instead the char property of the buffer's first char.
8451
8452 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
8453
8454 Automate the build of ja-dic.el (Bug#13984).
8455 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
8456 from the input, rather than assume that it's been done for us by the
8457 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
8458 the current date into a ja-dic.el comment, as that complicates
8459 regression testing.
8460
8461 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
8462
8463 * whitespace.el: Fix double evaluation.
8464 (whitespace-space, whitespace-hspace, whitespace-tab)
8465 (whitespace-newline, whitespace-trailing, whitespace-line)
8466 (whitespace-space-before-tab, whitespace-indentation)
8467 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
8468 obsolete defvars.
8469 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
8470 (whitespace-color-on): Use a single font-lock-add-keywords call.
8471 Fix double-evaluation of face variables.
8472
8473 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
8474
8475 * net/tramp-adb.el (tramp-adb-parse-device-names):
8476 Use `start-process' instead of `call-process'. Otherwise, the
8477 function might be blocked under MS Windows. (Bug#13299)
8478
8479 2013-03-17 Leo Liu <sdl.web@gmail.com>
8480
8481 Extend eldoc to display info in the mode-line. (Bug#13978)
8482 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
8483 (eldoc-mode-line-string): New variable.
8484 (eldoc-minibuffer-message): New function.
8485 (eldoc-message-function): New variable.
8486 (eldoc-message): Use it.
8487 (eldoc-display-message-p)
8488 (eldoc-display-message-no-interference-p):
8489 Support eldoc-post-insert-mode.
8490
8491 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
8492 (eval-expression): Run it.
8493
8494 2013-03-17 Roland Winkler <winkler@gnu.org>
8495
8496 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
8497 strings in the list of return values.
8498
8499 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
8500
8501 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
8502 radix before checking for HMS forms.
8503
8504 2013-03-16 Leo Liu <sdl.web@gmail.com>
8505
8506 * progmodes/scheme.el: Add indentation and font-locking for λ.
8507 (Bug#13975)
8508
8509 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
8510
8511 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
8512 token before point (bug#13942).
8513
8514 2013-03-16 Leo Liu <sdl.web@gmail.com>
8515
8516 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
8517
8518 2013-03-16 Eli Zaretskii <eliz@gnu.org>
8519
8520 * startup.el (command-line-normalize-file-name): Fix handling of
8521 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
8522 <xfq.free@gmail.com> in
8523 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
8524
8525 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
8526
8527 Sync with Tramp 2.2.7.
8528
8529 * net/trampver.el: Update release number.
8530
8531 2013-03-14 Tassilo Horn <tsdh@gnu.org>
8532
8533 * doc-view.el: Fix bug#13887.
8534 (doc-view-insert-image): Don't modify overlay associated to
8535 non-live windows, and implement horizontal centering of image in
8536 case it's smaller than the window.
8537 (doc-view-new-window-function): Force redisplay of new windows on
8538 doc-view buffers.
8539
8540 2013-03-13 Karl Fogel <kfogel@red-bean.com>
8541
8542 * saveplace.el (save-place-alist-to-file): Don't sort
8543 `save-place-alist', just pretty-print it (bug#13882).
8544
8545 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
8546
8547 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
8548 Check whether `default-file-name-coding-system' is bound.
8549 It isn't in XEmacs.
8550
8551 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
8552
8553 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
8554 backquotes for `obsolete' (bug#13929).
8555
8556 * international/mule.el (find-auto-coding): Include file name in
8557 obsolescence warning (bug#13922).
8558
8559 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
8560
8561 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
8562 for CFEngine 3-specific indentation.
8563 (cfengine3-indent-line): Use it. Fix up category regex.
8564 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
8565
8566 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
8567
8568 * type-break.el (type-break-file-name):
8569 * textmodes/remember.el (remember-data-file):
8570 * strokes.el (strokes-file):
8571 * shadowfile.el (shadow-initialize):
8572 * saveplace.el (save-place-file):
8573 * ps-bdf.el (bdf-cache-file):
8574 * progmodes/idlwave.el (idlwave-config-directory):
8575 * net/quickurl.el (quickurl-url-file):
8576 * international/kkc.el (kkc-init-file-name):
8577 * ido.el (ido-save-directory-list-file):
8578 * emulation/viper.el (viper-custom-file-name):
8579 * emulation/vip.el (vip-startup-file):
8580 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
8581 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
8582
8583 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
8584
8585 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
8586 * language/thai-word.el: Switch to UTF-8.
8587
8588 See ChangeLog.16 for earlier changes.
8589
8590 ;; Local Variables:
8591 ;; coding: utf-8
8592 ;; End:
8593
8594 Copyright (C) 2011-2013 Free Software Foundation, Inc.
8595
8596 This file is part of GNU Emacs.
8597
8598 GNU Emacs is free software: you can redistribute it and/or modify
8599 it under the terms of the GNU General Public License as published by
8600 the Free Software Foundation, either version 3 of the License, or
8601 (at your option) any later version.
8602
8603 GNU Emacs is distributed in the hope that it will be useful,
8604 but WITHOUT ANY WARRANTY; without even the implied warranty of
8605 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8606 GNU General Public License for more details.
8607
8608 You should have received a copy of the GNU General Public License
8609 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.