lisp/ansi-color.el: Convert to lexical binding.
[bpt/emacs.git] / lisp / ChangeLog
1 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
2
3 * ansi-color.el: Convert to lexical binding.
4 (ansi-colors): Fix URL.
5 (ansi-color-context, ansi-color-context-region): Use defvar-local.
6 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
7 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
8
9 * progmodes/prog-mode.el (prettify-symbols-mode)
10 (global-prettify-symbols-mode, prog-mode): Remove autoload cookies.
11
12 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13
14 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
15
16 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
17
18 2013-06-19 Tom Tromey <tromey@redhat.com>
19
20 * net/eww.el (eww-top-url): Remove.
21 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
22 (eww-render): Set new variables. Don't set eww-top-url.
23 (eww-handle-link): Handle "prev", "home", and "contents".
24 Downcase the rel text.
25 (eww-top-url): Choose best top URL.
26
27 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
28
29 * net/eww.el: Rewrite to implement form elements "by hand" instead of
30 relying in widget.el. Using widget.el leads to too many
31 user interface inconsistencies.
32 (eww-self-insert): Implement entering commands in text fields.
33 (eww-process-text-input): New function to make text input field editing
34 work.
35 (eww-submit): Rewrite to use the new-style form methods.
36 (eww-select-display): Display the correct selected item.
37 (eww-change-select): Implement changing the select value.
38 (eww-toggle-checkbox): Implement radio/checkboxes.
39 (eww-update-field): Fix compilation error.
40 (eww-tag-textarea): Implement <textarea>.
41
42 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
43 we don't shadow mode-specific bindings.
44
45 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
46 nothing to push.
47
48 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
49
50 2013-06-19 Glenn Morris <rgm@fencepost.gnu.org>
51
52 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
53
54 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
55
56 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
57 not needed.
58
59 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
60
61 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
62
63 * net/browse-url.el (browse-url-browser-function):
64 `eww-browse-url' has the right calling signature, `eww' does not.
65
66 2013-06-19 Glenn Morris <rgm@gnu.org>
67
68 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
69 Only eval autoloaded macros.
70 (byte-compile-autoload): Only give the macro warning for macros.
71
72 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
73 (ps-underlined-faces): Declare.
74
75 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
76 (speedbar-add-supported-extension): Declare.
77
78 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
79 Don't include a date stamp in the header of the generated file;
80 it leads to needless differences between output files.
81
82 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
83
84 * net/secrets.el (secrets-struct-secret-content-type): Replace
85 check of introspection data by a test call of "CreateItem". Some
86 servers do not offer introspection.
87
88 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
89
90 * electric.el (electric-pair-mode): Improve interaction with
91 electric-layout-mode.
92 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
93 (electric-pair-syntax): Use text-mode-syntax-table in comments
94 and strings.
95 (electric-pair--insert): New function.
96 (electric-pair-post-self-insert-function): Use it and
97 electric--after-char-pos.
98
99 2013-06-19 Leo Liu <sdl.web@gmail.com>
100
101 * progmodes/octave.el (octave-help): Fix regexp.
102
103 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
104
105 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
106 (shr-table-horizontal-line): Allow nil as a value, and change the
107 default.
108 (shr-insert-table-ruler): Respect the nil value.
109
110 2013-06-18 Tom Tromey <tromey@barimba>
111
112 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
113 New defvars.
114 (eww-open-file): New defun.
115 (eww-render): Initialize new variables.
116 (eww-display-html): Handle "link" and "a".
117 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
118 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
119 (eww-back-url): Rename from eww-previous-url.
120 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
121 New defuns.
122
123 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
124
125 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
126 Distinguish ternary operator tokens from slash symbol and slash
127 char literal.
128
129 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
130
131 Convert symbol prettification into minor mode and global minor mode.
132
133 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
134 `prog-prettify-symbols', and make a local defvar instead of defcustom.
135 (prettify-symbols--keywords): Rename from
136 `prog-prettify-symbols-alist' and make a local defvar.
137 (prettify-symbols--compose-symbol): Rename from
138 `prog--prettify-font-lock-compose-symbol'.
139 (prettify-symbols--make-keywords): Rename from
140 `prog-prettify-font-lock-symbols-keywords' and simplify.
141 (prog-prettify-install): Remove.
142 (prettify-symbols-mode): New minor mode, based on
143 `prog-prettify-install'.
144 (turn-on-prettify-symbols-mode): New function.
145 (global-prettify-symbols-mode): New globalized minor mode.
146
147 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
148 * progmodes/cfengine.el (cfengine3-mode):
149 * progmodes/perl-mode.el (perl-mode): Don't call
150 `prog-prettify-install'; set `prettify-symbols-alist' instead.
151
152 2013-06-18 Juri Linkov <juri@jurta.org>
153
154 * files-x.el (modify-file-local-variable-message): New function.
155 (modify-file-local-variable)
156 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
157 and call `modify-file-local-variable-message' when it's non-nil.
158 (add-file-local-variable, delete-file-local-variable)
159 (add-file-local-variable-prop-line)
160 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
161 and use it. (Bug#9820)
162
163 2013-06-18 Juri Linkov <juri@jurta.org>
164
165 * emulation/vi.el (vi-shell-op):
166 * emulation/vip.el (vip-execute-com, ex-command):
167 * emulation/viper-cmd.el (viper-exec-bang):
168 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
169 the call of `shell-command-on-region'. (Bug#14637)
170
171 * simple.el (shell-command-on-region): Doc fix.
172
173 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
174
175 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
176 (bug#14633).
177
178 2013-06-18 Glenn Morris <rgm@gnu.org>
179
180 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
181
182 * newcomment.el (comment-search-forward, comment-search-backward):
183 Doc fix. (Bug#14376)
184
185 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
186
187 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
188 (buffer-face-mode-invoke): Doc fix.
189
190 2013-06-18 Matthias Meulien <orontee@gmail.com>
191
192 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
193
194 2013-06-18 Glenn Morris <rgm@gnu.org>
195
196 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
197 Replace obsolete function generic-make-keywords with its expansion.
198
199 * progmodes/python.el (ffap-alist): Declare.
200
201 * textmodes/reftex.el (bibtex-mode-map): Declare.
202
203 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
204
205 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
206 (package-unpack, package-unpack-single): Return the pkg-dir.
207 (package-download-transaction): Use it to update package-alist.
208
209 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
210
211 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
212 possible choice.
213
214 2013-06-17 Juri Linkov <juri@jurta.org>
215
216 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
217
218 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
219
220 * emacs-lisp/package.el (package-load-descriptor):
221 Remove `with-syntax-table' call, `read' doesn't need it.
222 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
223
224 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
225
226 * startup.el (command-line): Expand package name returned by
227 `package--description-file' (bug#14639).
228
229 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
230
231 * emacs-lisp/package.el (package-load-descriptor): Do not call
232 `emacs-lisp-mode', just use its syntax table.
233
234 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
235
236 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
237 `font-lock-extra-managed-props' if any prettifying keyword is added.
238 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
239 (prog-mode): Use `setq-local'.
240
241 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
242
243 * international/characters.el (standard-case-table): Set syntax of ?»
244 and ?« to punctuation.
245
246 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
247
248 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
249 Save relevant match data before calling `syntax-ppss' (bug#14595).
250
251 2013-06-15 Juri Linkov <juri@jurta.org>
252
253 * files-x.el (modify-file-local-variable-prop-line): Add local
254 variables to the end of the existing comment on the first line.
255 Use `file-auto-mode-skip' to skip interpreter magic line,
256 and also skip XML declaration.
257
258 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
259
260 * startup.el (package--builtin-versions): New var.
261 (package-subdirectory-regexp): Remove.
262 (package--description-file): Hard code its value instead.
263
264 * emacs-lisp/package.el: Don't activate packages older than builtin.
265 (package-obsolete-list): Rename from package-obsolete-alist, and make
266 it into a simple list of package-desc.
267 (package-strip-version): Remove.
268 (package-built-in-p): Use package--builtin-versions.
269 (package-mark-obsolete): Simplify.
270 (package-process-define-package): Mark it obsolete if older than the
271 builtin version.
272 (package-handle-response): Use line-end-position.
273 (package-read-archive-contents, package--download-one-archive):
274 Simplify.
275 (package--add-to-archive-contents): Skip if older than the builtin or
276 installed version.
277 (package-menu-describe-package): Fix last change.
278 (package-list-unversioned): New var.
279 (package-menu--generate): Use it.
280
281 * emacs-lisp/autoload.el: Manage package--builtin-versions.
282 (autoload--insert-text, autoload--insert-cookie-text): New functions.
283 (autoload-builtin-package-versions): New variable.
284 (autoload-generate-file-autoloads): Use them.
285 Remove the list of autoloaded functions/macros from the
286 (autoload...) comments.
287
288 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
289
290 2013-06-15 Eli Zaretskii <eliz@gnu.org>
291
292 * simple.el (line-move-partial): Don't jump to the next screen
293 line as soon as it becomes visible. Instead, continue enlarging
294 the vscroll until the portion of a tall screen line that's left on
295 display is about the height of the frame's default font.
296 (Bug#14567)
297
298 2013-06-15 Glenn Morris <rgm@gnu.org>
299
300 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
301 compilation-error-regexp-alist void, or local while let-bound.
302
303 * progmodes/make-mode.el (makefile-mode-syntax-table):
304 Treat "=" as punctuation. (Bug#14614)
305
306 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
307
308 * help-fns.el (describe-variable):
309 Add extra line for permanent-local variables.
310
311 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
312
313 * progmodes/scheme.el (scheme-font-lock-keywords-2):
314 Add export, import, library. (Bug#9164)
315 (library): Set indent function.
316
317 2013-06-14 Glenn Morris <rgm@gnu.org>
318
319 * term/xterm.el (xterm--query):
320 Stop after first matching handler. (Bug#14615)
321
322 2013-06-14 Ivan Kanis <ivan@kanis.fr>
323
324 Add support for dired in saveplace.
325 * dired.el (dired-initial-position-hook): New variable.
326 (dired-initial-position): Call hook to place cursor position.
327 * saveplace.el (save-place-to-alist): Add dired position.
328 (save-place-dired-hook): New function.
329
330 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
331
332 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
333 through a symbol rather than letrec.
334
335 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
336 (package-desc): Add `dir' field.
337 (package-desc-full-name): New function.
338 (package-load-descriptor): Combine the two arguments. Don't use `load'.
339 (package-maybe-load-descriptor): Remove.
340 (package-load-all-descriptors): Just call package-load-descriptor.
341 (package--disabled-p): New function.
342 (package-desc-vers, package-desc-doc): Remove aliases.
343 (package--dir): Remove function.
344 (package-activate): Check if a package is disabled.
345 (package-process-define-package): New function, extracted from
346 define-package.
347 (define-package): Turn into a place holder.
348 (package-unpack-single, package-tar-file-info):
349 Use package--description-file.
350 (package-compute-transaction): Use package--disabled-p.
351 (package-download-transaction): Don't call
352 package-maybe-load-descriptor since they're all loaded anyway.
353 (package-install): Change argument to be a pkg-desc.
354 (package-delete): Use a single pkg-desc argument.
355 (describe-package-1): Use package-desc-dir instead of package--dir.
356 Use package-desc property instead of package-symbol.
357 (package-install-button-action): Adjust accordingly.
358 (package--push): Rewrite.
359 (package-menu--print-info): Adjust accordingly. Change the ID format
360 to be a pkg-desc.
361 (package-menu-describe-package, package-menu-get-status)
362 (package-menu--find-upgrades, package-menu-mark-upgrades)
363 (package-menu-execute, package-menu--name-predicate):
364 Adjust accordingly.
365 * startup.el (package--description-file): New function.
366 (command-line): Use it.
367 * emacs-lisp/package-x.el (package-upload-buffer-internal):
368 Use package-desc-version.
369
370 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
371 (byte-compile-preprocess): Use it.
372 (byte-compile-file-form-defalias): Try a bit harder to use macros we
373 can't quite recognize.
374 (byte-compile-add-to-list): Remove.
375 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
376 (cconv-closure-convert): Add assertion.
377
378 * emacs-lisp/map-ynp.el: Use lexical-binding.
379 (map-y-or-n-p): Remove unused vars `tail' and `object'.
380 Factor out some repeated code.
381
382 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
383
384 * subr.el (with-eval-after-load): New macro.
385 (eval-after-load): Allow form to be a function.
386 take advantage of lexical-binding.
387 (do-after-load-evaluation): Use dolist and adjust to new format.
388 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
389
390 2013-06-13 Juri Linkov <juri@jurta.org>
391
392 * replace.el (perform-replace): Display "symbol " and other search
393 modes from `isearch-message-prefix' in the *Help* buffer.
394
395 * isearch.el (isearch-query-replace): Add " symbol" and other
396 possible search modes from `isearch-message-prefix' to the prompt.
397 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
398 when reading a regexp to collect.
399
400 2013-06-13 Juri Linkov <juri@jurta.org>
401
402 * isearch.el (word-search-regexp): Match whitespace if the search
403 string begins or ends in whitespace. The LAX arg is applied to
404 both ends of the search string. Use `regexp-quote' and explicit
405 \< and \> instead of \b. Use \` and \' instead of ^ and $.
406 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
407 boundaries are replaced with symbol boundaries, and characters
408 between symbols match non-word non-symbol syntax. (Bug#14602)
409
410 2013-06-13 Juri Linkov <juri@jurta.org>
411
412 * isearch.el (isearch-del-char): Don't exceed the length of
413 `isearch-string' by the prefix arg. (Bug#14563)
414
415 2013-06-13 Juri Linkov <juri@jurta.org>
416
417 * isearch.el (isearch-yank-word, isearch-yank-line)
418 (isearch-char-by-name, isearch-quote-char)
419 (isearch-printing-char, isearch-process-search-char):
420 Add optional count prefix arg. (Bug#14563)
421
422 * international/isearch-x.el
423 (isearch-process-search-multibyte-characters):
424 Add optional count prefix arg.
425
426 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
427
428 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
429 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
430 lexical-binding.
431
432 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
433
434 * subr.el (set-temporary-overlay-map): Add on-exit argument.
435
436 2013-06-13 Glenn Morris <rgm@gnu.org>
437
438 * startup.el (tty-handle-args):
439 Don't just discard "--" and anything after. (Bug#14608)
440
441 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
442
443 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
444
445 Implement changes in Secret Service API. Make it backward compatible.
446 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
447 (secrets-create-item): Use it. Prefix properties with interface.
448
449 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
450
451 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
452 (term-emulate-terminal): Respect term-suppress-hard-newline.
453
454 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
455
456 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
457 Only remove a `thumb-file' overlay. (Bug#14548)
458
459 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
460
461 * mail/reporter.el (reporter-submit-bug-report):
462 Handle missing package-name. (Bug#14600)
463
464 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
465
466 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
467 (reftex-citation-prompt, reftex-default-bibliography)
468 (reftex-bib-or-thebib, reftex-get-bibfile-list)
469 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
470 (reftex-bib-sort-author, reftex-bib-sort-year)
471 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
472 (reftex-extract-bib-entries-from-thebibliography)
473 (reftex-get-bibkey-default, reftex-get-bib-names)
474 (reftex-parse-bibtex-entry, reftex-get-bib-field)
475 (reftex-format-bib-entry, reftex-parse-bibitem)
476 (reftex-format-bibitem, reftex-do-citation)
477 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
478 (reftex-restrict-bib-matches, reftex-extract-bib-file)
479 (reftex-insert-bib-matches, reftex-format-citation)
480 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
481 (reftex-create-bibtex-file): Add docstrings, mostly by converting
482 existing comments into docstrings.
483
484 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
485
486 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
487
488 2013-06-12 Andreas Schwab <schwab@suse.de>
489
490 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
491 for auto-save files.
492
493 2013-06-12 Glenn Morris <rgm@gnu.org>
494
495 * ido.el (ido-delete-ignored-files): Remove.
496 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
497 Go back to calling ido-ignore-item-p directly.
498
499 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
500
501 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
502
503 * ido.el (ido-delete-ignored-files): New function,
504 split from ido-make-file-list-1.
505 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
506 (ido-make-file-list-1): Use ido-delete-ignored-files.
507
508 2013-06-12 Leo Liu <sdl.web@gmail.com>
509
510 * progmodes/octave.el (inferior-octave-startup)
511 (inferior-octave-completion-table)
512 (inferior-octave-track-window-width-change)
513 (octave-eldoc-function-signatures, octave-help)
514 (octave-find-definition): Use single quoted strings.
515 (inferior-octave-startup-args): Change default value.
516 (inferior-octave-startup): Do not hard code "-i" and
517 "--no-line-editing".
518 (inferior-octave-resync-dirs): Add optional arg NOERROR.
519 (inferior-octave-directory-tracker): Use it.
520 (octave-goto-function-definition): Robustify.
521 (octave-help): Support highlighting operators in 'See also'.
522 (octave-find-definition): Find subfunctions only in Octave mode.
523
524 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
525
526 * help-fns.el (help-fns--compiler-macro): If the handler function is
527 named, then put a link to it.
528 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
529 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
530 (cl-typep): Use it.
531 (cl-eval-when): Simplify debug spec.
532 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
533 compiler-macro function instead of setting `compiler-macro-file'.
534
535 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
536
537 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
538 * vc/vc-hooks.el (vc-stay-local): Doc fix.
539
540 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
541 Daniel Hackney <dan@haxney.org>
542
543 First part of Daniel Hackney's patch to package.el.
544 * emacs-lisp/package.el: Use defstruct.
545 (package-desc): New, main struct.
546 (package--bi-desc, package--ac-desc): New structs, used to describe the
547 format in external files.
548 (package-desc-vers): Replace with package-desc-version accessor.
549 (package-desc-doc): Replace with package-desc-summary accessor.
550 (package-activate-1): Remove `package' arg since the pkg-vec now
551 includes the name.
552 (define-package): Use package-desc-from-define.
553 (package-unpack-single): Change file-name arg to be a symbol.
554 (package--add-to-archive-contents): Use package-desc-create and new
555 accessor functions to package--ac-desc.
556 (package-buffer-info, package-tar-file-info): Return a package-desc.
557 (package-install-from-buffer): Remove `type' argument. Change pkg-info
558 arg to be a package-desc.
559 (package-install-file): Adjust accordingly. Use \' to match EOS.
560 (package--from-builtin): New function.
561 (describe-package-1, package-menu--generate): Use it.
562 (package--make-autoloads-and-compile): Change name arg to be a symbol.
563 (package-generate-autoloads): Idem and return the name of the file.
564 * emacs-lisp/package-x.el (package-upload-buffer-internal):
565 Change pkg-info arg to be a package-desc.
566 Use package-make-ac-desc.
567 (package-upload-file): Use \' to match EOS.
568 * finder.el (finder-compile-keywords): Use package-make-builtin.
569
570 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
571
572 * vc/vc.el (vc-deduce-fileset): Change error message.
573 (vc-read-backend): New function.
574 (vc-next-action): Use it.
575
576 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
577
578 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
579 (prolog-font-lock-keywords): Use regexp-opt instead.
580 Don't manually highlight strings.
581 (prolog-mode-variables): Simplify comment-start-skip.
582 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
583
584 * emacs-lisp/generic.el (generic--normalise-comments)
585 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
586 (generic-mode-set-comments): Use them.
587 (generic-bracket-support): Use setq-local.
588 (generic-make-keywords-list): Declare obsolete.
589
590 2013-06-11 Glenn Morris <rgm@gnu.org>
591
592 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
593 Prettify after setting font-lock-defaults. (Bug#14574)
594
595 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
596
597 * replace.el (query-replace, occur-read-regexp-defaults-function)
598 (replace-search):
599 * subr.el (declare-function, number-sequence, local-set-key)
600 (substitute-key-definition, locate-user-emacs-file)
601 (with-silent-modifications, split-string, eval-after-load):
602 Fix typos, remove unneeded backslashes and reflow some docstrings.
603
604 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
605
606 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
607 default for Elisp files.
608
609 2013-06-11 Glenn Morris <rgm@gnu.org>
610
611 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
612 although define-derived-mode was doing this anyway. (Bug#14583)
613
614 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
615
616 * allout.el (allout-encryption-plaintext-sanitization-regexps):
617 Fix make-variable-buffer-local call to refer to the correct variable.
618
619 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
620
621 * eshell/em-term.el (eshell-visual-commands)
622 (eshell-visual-subcommands, eshell-visual-options):
623 Add summary line to docstrings. Add cross-references.
624
625 2013-06-10 Glenn Morris <rgm@gnu.org>
626
627 * epa.el (epa-read-file-name): New function. (Bug#14510)
628 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
629
630 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
631
632 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
633 output redirection to be ignored with visual commands.
634
635 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
636
637 * eshell/em-term.el (eshell-visual-command-p): New function.
638 (eshell-term-initialize): Move long lambda to separate function
639 eshell-visual-command-p.
640 * eshell/em-dirs.el (eshell-dirs-initialise):
641 * eshell/em-script.el (eshell-script-initialize):
642 Add missing #' to lambda.
643
644 2013-06-08 Leo Liu <sdl.web@gmail.com>
645
646 * progmodes/octave.el (octave-add-log-current-defun): New function.
647 (octave-mode): Set add-log-current-defun-function.
648 (octave-goto-function-definition): Do not move point if not found.
649 (octave-find-definition): Enhance to try subfunctions first.
650
651 2013-06-08 Glenn Morris <rgm@gnu.org>
652
653 * emacs-lisp/bytecomp.el (byte-compile-char-before)
654 (byte-compile-backward-char, byte-compile-backward-word):
655 Improve previous change, to handle non-explicit nil.
656
657 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
658
659 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
660 (smie--opener/closer-at-point): New function.
661 (smie--matching-block-data): Use it. Don't match from right after an
662 opener or right before a closer. Obey smie-blink-matching-inners.
663 Don't signal a mismatch for repeated inners like "switch..case..case".
664
665 2013-06-07 Leo Liu <sdl.web@gmail.com>
666
667 * progmodes/octave.el (octave-mode): Set comment-use-global-state
668 to t. (Bug#14303)
669 (octave-function-header-regexp): Fix. (Bug#14570)
670 (octave-help-mode-finish-hook, octave-help-mode-finish):
671 Remove. Just use temp-buffer-show-hook.
672
673 * newcomment.el (comment-search-backward): Revert last change.
674 (Bug#14434)
675
676 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
677
678 2013-06-07 Eli Zaretskii <eliz@gnu.org>
679
680 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
681 through xargs, to avoid failure due to MS-Windows limitations on
682 command-line length.
683
684 2013-06-06 Glenn Morris <rgm@gnu.org>
685
686 * font-lock.el (lisp-font-lock-keywords-2):
687 Treat user-error like error.
688
689 * emacs-lisp/bytecomp.el (byte-compile-char-before)
690 (byte-compile-backward-char, byte-compile-backward-word):
691 Handle explicit nil arguments. (Bug#14565)
692
693 2013-06-05 Alan Mackenzie <acm@muc.de>
694
695 * isearch.el (isearch-allow-prefix): New user option.
696 (isearch-other-meta-char): Don't exit isearch when a prefix
697 argument is typed whilst `isearch-allow-prefix' is non-nil.
698 (Bug#9706)
699
700 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
701
702 * autorevert.el (auto-revert-notify-handler): Use memq.
703 Hide assertion failure.
704
705 * skeleton.el: Use cl-lib.
706 (skeleton-further-elements): Use defvar-local.
707 (skeleton-insert): Use cl-progv.
708
709 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
710
711 * progmodes/prog-mode.el (prog-prettify-symbols)
712 (prog-prettify-install): Update docstrings.
713
714 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
715
716 * simple.el: Move all the prog-mode code to prog-mode.el.
717 * progmodes/prog-mode.el: New file.
718 * loadup.el: Add prog-mode.el.
719
720 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
721
722 * simple.el (prog-prettify-symbols): Add version.
723 (prog-prettify-install): Add convenience function to prettify symbols.
724
725 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
726 (perl--augmented-font-lock-keywords-1)
727 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
728 variables and use it.
729
730 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
731 (cfengine3-mode): Remove unneeded variable and use it.
732
733 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
734 (lisp--augmented-font-lock-keywords-1)
735 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
736 Remove unneeded variables and use it.
737
738 2013-06-05 João Távora <joaotavora@gmail.com>
739
740 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
741 to point when opening the connection. (Bug#14380)
742
743 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
744
745 * subr.el (load-history-regexp, load-history-filename-element)
746 (eval-after-load, after-load-functions, do-after-load-evaluation)
747 (eval-next-after-load, display-delayed-warnings)
748 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
749 definition of save-match-data.
750 (overriding-local-map): Remove accidental obsolescence declaration.
751
752 * emacs-lisp/edebug.el (edebug-result): Move before first use.
753
754 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
755
756 Generalize symbol prettify support to prog-mode and implement it
757 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
758 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
759 (prog--prettify-font-lock-compose-symbol)
760 (prog-prettify-font-lock-symbols-keywords): New variables and
761 functions to support symbol prettification.
762 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
763 (lisp--augmented-font-lock-keywords-1)
764 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
765 (lisp--prettify-symbols-alist): Implement prettify of lambda.
766 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
767 (cfengine3--prettify-symbols-alist, cfengine3-mode):
768 Implement prettify of -> => :: strings.
769 * progmodes/perl-mode.el (perl-prettify-symbols)
770 (perl--font-lock-compose-symbol)
771 (perl--font-lock-symbols-keywords): Move to prog-mode.
772 (perl--prettify-symbols-alist): Prettify -> => :: strings.
773 (perl-font-lock-keywords-1)
774 (perl-font-lock-keywords-2): Remove explicit prettify support.
775 (perl--augmented-font-lock-keywords)
776 (perl--augmented-font-lock-keywords-1)
777 (perl--augmented-font-lock-keywords-2, perl-mode):
778 Implement prettify support.
779
780 2013-06-05 Leo Liu <sdl.web@gmail.com>
781
782 Re-implement smie matching block highlight using
783 show-paren-data-function. (Bug#14395)
784 * emacs-lisp/smie.el (smie-matching-block-highlight)
785 (smie--highlight-matching-block-overlay)
786 (smie--highlight-matching-block-lastpos)
787 (smie-highlight-matching-block)
788 (smie-highlight-matching-block-mode): Remove.
789 (smie--matching-block-data-cache): New variable.
790 (smie--matching-block-data): New function.
791 (smie-setup): Use smie--matching-block-data for
792 show-paren-data-function.
793
794 * progmodes/octave.el (octave-mode-menu): Fix.
795 (octave-find-definition): Skip garbage lines.
796
797 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
798
799 Fix compilation error with simultaneous dynamic+lexical scoping.
800 Add warning when a defvar appears after the first let-binding.
801 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
802 (byte-compile-close-variables): Initialize it.
803 (byte-compile--declare-var): New function.
804 (byte-compile-file-form-defvar)
805 (byte-compile-file-form-define-abbrev-table)
806 (byte-compile-file-form-custom-declare-variable): Use it.
807 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
808 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
809 (byte-compile-bind): Handle dynamic bindings that shadow
810 lexical bindings.
811 (byte-compile-unbind): Make arg non-optional.
812 (byte-compile-let): Simplify.
813 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
814 (cconv--analyse-function, cconv-analyse-form): Populate it.
815 Protect byte-compile-bound-variables to limit the scope of defvars.
816 (cconv-analyse-form): Add missing rule for (defvar <foo>).
817 Remove unneeded rule for `declare'.
818
819 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
820 so as to avoid depending on cl-adjoin at run-time.
821 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
822
823 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
824 (macroexp--warn-and-return): Use it.
825
826 2013-06-05 Leo Liu <sdl.web@gmail.com>
827
828 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
829
830 2013-06-04 Leo Liu <sdl.web@gmail.com>
831
832 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
833 (compilation-auto-jump): Suppress the "Mark set" message to give
834 way to exit message.
835
836 2013-06-04 Alan Mackenzie <acm@muc.de>
837
838 Remove faulty optimisation from indentation calculation.
839 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
840 search limit based on 2000 characters back from indent-point.
841
842 2013-06-03 Tassilo Horn <tsdh@gnu.org>
843
844 * eshell/em-term.el (cl-lib): Require `cl-lib'.
845
846 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
847
848 * emacs-lisp/lisp.el: Use lexical-binding.
849 (lisp--local-variables-1, lisp--local-variables): New functions.
850 (lisp--local-variables-completion-table): New var.
851 (lisp-completion-at-point): Use it complete let-bound vars.
852
853 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
854 eagerly (bug#14422).
855
856 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
857
858 * autorevert.el (auto-revert-notify-enabled)
859 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
860 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
861 (auto-revert-notify-handler): Handle also gfilenotify.
862
863 * subr.el (file-notify-handle-event): New defun. Replacing ...
864 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
865 Remove.
866
867 2013-06-03 Juri Linkov <juri@jurta.org>
868
869 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
870 `M-s h .'. (Bug#14427)
871
872 * hi-lock.el (highlight-symbol-at-point): New alias for the new
873 command `hi-lock-face-symbol-at-point'.
874 (hi-lock-face-symbol-at-point): New command.
875 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
876 (hi-lock-menu): Add `highlight-symbol-at-point'.
877 (hi-lock-mode): Doc fix.
878
879 * isearch.el (isearch-forward-symbol-at-point): New command.
880 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
881 (isearch-highlight-regexp): Add a regexp which matches
882 words/symbols for word/symbol mode.
883
884 * subr.el (find-tag-default-bounds): New function with the body
885 mostly moved from `find-tag-default'.
886 (find-tag-default): Move most code to `find-tag-default-bounds',
887 call it and apply `buffer-substring-no-properties' afterwards.
888
889 2013-06-03 Tassilo Horn <tsdh@gnu.org>
890
891 * eshell/em-term.el (eshell-term-initialize):
892 Use `cl-intersection' rather than `intersection'.
893
894 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
895
896 * vc/log-view.el: Doc fix.
897 (log-view-mode-map): Copy keymap from `special-mode-map'.
898
899 2013-06-02 Eric Ludlam <zappo@gnu.org>
900
901 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
902 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
903 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
904 (eieio-unbound, eieio-default-superclass)
905 (eieio--define-field-accessors, method-static, method-before)
906 (method-primary, method-after, method-num-lists)
907 (method-generic-before, method-generic-primary)
908 (method-generic-after, method-num-slots)
909 (eieio-specialized-key-to-generic-key)
910 (eieio--check-type, class-v, class-p)
911 (eieio-class-name, define-obsolete-function-alias)
912 (eieio-class-parents-fast, eieio-class-children-fast)
913 (same-class-fast-p, class-constructor, generic-p)
914 (generic-primary-only-p, generic-primary-only-one-p)
915 (class-option-assoc, class-option, eieio-object-p)
916 (class-abstract-p, class-method-invocation-order)
917 (eieio-defclass-autoload-map, eieio-defclass-autoload)
918 (eieio-class-un-autoload, eieio-defclass)
919 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
920 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
921 (eieio--defgeneric-init-form, eieio-defgeneric-form)
922 (eieio-defgeneric-reset-generic-form)
923 (eieio-defgeneric-form-primary-only)
924 (eieio-defgeneric-reset-generic-form-primary-only)
925 (eieio-defgeneric-form-primary-only-one)
926 (eieio-defgeneric-reset-generic-form-primary-only-one)
927 (eieio-unbind-method-implementations)
928 (eieio--defmethod, eieio--typep)
929 (eieio-perform-slot-validation, eieio-validate-slot-value)
930 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
931 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
932 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
933 (eieio-slot-name-index, eieio-class-slot-name-index)
934 (eieio-set-defaults, eieio-initarg-to-attribute)
935 (eieio-attribute-to-initarg, eieio-c3-candidate)
936 (eieio-c3-merge-lists, eieio-class-precedence-c3)
937 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
938 (eieio-class-precedence-list, eieio-generic-call-methodname)
939 (eieio-generic-call-arglst, eieio-generic-call-key)
940 (eieio-generic-call-next-method-list)
941 (eieio-pre-method-execution-functions, eieio-generic-call)
942 (eieio-generic-call-primary-only, eieiomt-method-list)
943 (eieiomt-optimizing-obarray, eieiomt-install)
944 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
945 (eieio-generic-form, eieio-defmethod, make-obsolete)
946 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
947 (defclass): Remove `eval-and-compile' from macro.
948 (call-next-method, shared-initialize): Instead of using
949 `scoped-class' variable, use new eieio--scoped-class, and
950 eieio--with-scoped-class.
951 (initialize-instance): Rename local variable 'scoped-class' to
952 'this-class' to remove ambiguitity from old global.
953
954 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
955 eieio.el.
956 (eieio--scoped-class-stack): New variable.
957 (eieio--scoped-class): New fcn.
958 (eieio--with-scoped-class): New scoping macro.
959 (eieio-defclass): Use pushnew instead of add-to-list.
960 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
961 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
962 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
963 `scoped-class' variable, use new eieio--scoped-class, and
964 eieio--with-scoped-class.
965
966 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
967
968 2013-06-02 Tassilo Horn <tsdh@gnu.org>
969
970 * eshell/esh-ext.el (eshell-external-command): Pass args to
971 `eshell-find-interpreter'.
972 (eshell-find-interpreter): Add new second parameter ARGS.
973
974 * eshell/em-script.el (eshell-script-initialize): Add second arg
975 to the function added as MATCH to `eshell-interpreter-alist'.
976
977 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
978 the function added as MATCH to `eshell-interpreter-alist'.
979
980 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
981 (eshell-visual-options): New defcustom.
982 (eshell-escape-control-x): Adapt docstring.
983 (eshell-term-initialize): Test `eshell-visual-subcommands' and
984 `eshell-visual-options' in addition to `eshell-visual-commands'.
985 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
986
987 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
988
989 * progmodes/python.el (python-indent-block-enders): Add break,
990 continue and raise keywords.
991
992 2013-06-01 Glenn Morris <rgm@gnu.org>
993
994 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
995
996 Plain (f)boundp silences compilation warnings since Emacs 22.1.
997 * progmodes/cc-cmds.el (delete-forward-p):
998 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
999 * progmodes/cc-engine.el (buffer-syntactic-context):
1000 * progmodes/cc-fonts.el (face-property-instance):
1001 * progmodes/cc-mode.el (set-keymap-parents):
1002 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
1003 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
1004 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
1005 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
1006 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
1007
1008 * progmodes/cc-vars.el (other): Emacs has this widget since
1009 at least 21.1, so don't (re)define it.
1010
1011 * eshell/em-cmpl.el (eshell-cmpl-initialize):
1012 Replace the obsolete alias pcomplete-arg-quote-list.
1013
1014 2013-06-01 Leo Liu <sdl.web@gmail.com>
1015
1016 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
1017 punctuation syntax.
1018 (inferior-octave-minimal-columns)
1019 (inferior-octave-last-column-width): New variables.
1020 (inferior-octave-track-window-width-change): New function.
1021 (inferior-octave-mode): Adjust column width so that Octave output,
1022 for example from 'ls', can fit into the window nicely.
1023
1024 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
1025
1026 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
1027 Highlight expansions inside regexp literals.
1028
1029 2013-05-31 Glenn Morris <rgm@gnu.org>
1030
1031 * obsolete/sym-comp.el (symbol-complete):
1032 Replace obsolete completion-annotate-function.
1033
1034 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
1035
1036 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
1037
1038 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
1039 New function, checks if point is inside a literal that allows
1040 expression expansion.
1041 (ruby-syntax-propertize-expansion): Use it.
1042 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
1043 around the body.
1044
1045 2013-05-30 Juri Linkov <juri@jurta.org>
1046
1047 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
1048 to "\M-si".
1049 (isearch-invisible): New variable.
1050 (isearch-forward): Doc fix.
1051 (isearch-mode): Set `isearch-invisible'
1052 to the value of `search-invisible'.
1053 (isearch-toggle-case-fold): Doc fix.
1054 (isearch-toggle-invisible): New command.
1055 (isearch-query-replace): Let-bind `search-invisible'
1056 to the value of `isearch-invisible'.
1057 (isearch-search): Use `isearch-invisible' instead of
1058 `search-invisible'. Let-bind `search-invisible'
1059 to the value of `isearch-invisible'. (Bug#11378)
1060
1061 2013-05-30 Juri Linkov <juri@jurta.org>
1062
1063 * replace.el (perform-replace): Avoid `isearch-range-invisible'
1064 call when `query-flag' is nil and `search-invisible' is non-nil.
1065 (Bug#11746)
1066
1067 2013-05-30 Glenn Morris <rgm@gnu.org>
1068
1069 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
1070
1071 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
1072 (cc-require): Suppress spurious "noruntime" warnings.
1073 (cc-require-when-compile): Use fboundp, for sake of compiler.
1074
1075 * progmodes/cc-mode.el: Move load of cc-vars before that of
1076 cc-langs (which in turn loads cc-vars), to quieten compiler.
1077
1078 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
1079
1080 * paren.el: Simplify the code.
1081 (show-paren-mode): Always start the timer.
1082 (show-paren--idle-timer): Rename from show-paren-idle-timer.
1083 (show-paren--overlay, show-paren--overlay-1): Rename from
1084 show-paren-overlay and show-paren-overlay-1, and initialize to an
1085 overlay rather than to nil.
1086 (show-paren-function): Misc cleanup and simplifications.
1087
1088 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
1089
1090 * paren.el (show-paren-data-function): New hook.
1091 (show-paren--default): New function, extracted from show-paren-function.
1092 (show-paren-function): Use show-paren-data-function.
1093
1094 2013-05-30 Glenn Morris <rgm@gnu.org>
1095
1096 * ielm.el (ielm-map, ielm-complete-symbol):
1097 Use completion-at-point rather than obsolete functions.
1098 (inferior-emacs-lisp-mode): Doc fix.
1099 Set completion-at-point-functions, rather than
1100 comint-dynamic-complete-functions.
1101
1102 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
1103 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
1104 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
1105
1106 * image.el (image-animated-p): Tweak definition.
1107
1108 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
1109 (rlogin-process-connection-type): Tweak default. Add set-after.
1110 (rlogin-host): Doc fix.
1111 (rlogin): Tweak prompt.
1112 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
1113
1114 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
1115 * progmodes/tcl.el (inferior-tcl-mode-map):
1116 Use completion-at-point rather than obsolete alias.
1117
1118 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
1119
1120 * minibuffer.el (read-file-name-completion-ignore-case):
1121 Move before completion--in-region, for eager macro expansion.
1122
1123 2013-05-29 Juri Linkov <juri@jurta.org>
1124
1125 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
1126 for total count of matching lines. Add `global-matches' for total
1127 count of matches. Rename `matches' to `lines' for count of
1128 matching lines. Add `matches' for count of matches.
1129 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
1130 to `prev-line' for line number of prev match endpt.
1131 Increment `matches' for every match. Print the number of
1132 matching lines in the header.
1133 (occur-context-lines): Rename `lines' to `curr-line'.
1134 Rename `prev-lines' to `prev-line'. (Bug#14017)
1135
1136 2013-05-29 Juri Linkov <juri@jurta.org>
1137
1138 * replace.el (perform-replace): Add `skip-read-only-count',
1139 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
1140 Increment them for corresponding conditions and report the number
1141 of skipped occurrences in the final message. (Bug#11746)
1142 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1143 (replace-string, replace-regexp): Doc fix.
1144
1145 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1146
1147 * emacs-lisp/trace.el (trace--read-args): Provide a default.
1148
1149 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
1150 prog-mode-map (bug#14504).
1151
1152 2013-05-29 Leo Liu <sdl.web@gmail.com>
1153
1154 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
1155 (octave-help): Small simplification.
1156
1157 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
1158 off the highlight first.
1159
1160 2013-05-29 Glenn Morris <rgm@gnu.org>
1161
1162 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
1163 Handle idlwave-last-system-routine-info-cons-cell being nil.
1164
1165 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
1166 (idlwave-write-paths): Simplify via with-temp-buffer.
1167
1168 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
1169 * emulation/cua-rect.el: Also load cua-base at run time.
1170
1171 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
1172 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
1173 (cperl-imenu-on-info): Require imenu.
1174
1175 2013-05-28 Alan Mackenzie <acm@muc.de>
1176
1177 Handle "capitalised keywords" correctly.
1178 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
1179
1180 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
1181
1182 * eshell/em-unix.el: Add -r option to cp.
1183
1184 2013-05-28 Glenn Morris <rgm@gnu.org>
1185
1186 * vc/vc-arch.el (vc-exec-after): Declare.
1187 (vc-switches): Autoload.
1188 * vc/vc-bzr.el: No need to require vc when compiling.
1189 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
1190 (vc-resynch-buffer, vc-dir-refresh): Declare.
1191 (vc-setup-buffer, vc-switches): Autoload.
1192 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
1193 (vc-resynch-buffer): Declare.
1194 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
1195 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
1196 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
1197 (grep-read-regexp, grep-read-files, grep-expand-template)
1198 (vc-dir-refresh): Declare.
1199 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
1200 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
1201 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
1202 * vc/vc-mtn.el (vc-exec-after): Declare.
1203 (vc-switches): Autoload.
1204 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
1205 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
1206 (vc-file-tree-walk): Declare.
1207 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
1208 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
1209 (vc-tag-precondition, vc-rename-master): Autoload.
1210 * vc/vc-svn.el (vc-exec-after): Declare.
1211 (vc-switches, vc-setup-buffer): Autoload.
1212 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
1213 Autoload.
1214 (vc-resynch-buffer): Declare.
1215
1216 * obsolete/fast-lock.el (byte-compile-warnings):
1217 Don't warn about obsolete features in this obsolete file.
1218
1219 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
1220 Move definition before use.
1221
1222 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
1223 (dun-unix-verbs): Remove dun-zippy.
1224 (dun-zippy): Remove function.
1225
1226 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
1227
1228 2013-05-27 Juri Linkov <juri@jurta.org>
1229
1230 * replace.el (replace-search): New function with code moved out
1231 from `perform-replace'.
1232 (replace-highlight, replace-dehighlight): Move function definitions
1233 up closer to `replace-search'. (Bug#11746)
1234
1235 2013-05-27 Juri Linkov <juri@jurta.org>
1236
1237 * replace.el (perform-replace): Ignore invisible matches.
1238 In addition to checking `query-replace-skip-read-only', also
1239 filter out matches by calling `run-hook-with-args-until-failure'
1240 on `isearch-filter-predicates', and also check `search-invisible'
1241 for t or call `isearch-range-invisible'.
1242 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
1243
1244 2013-05-27 Juri Linkov <juri@jurta.org>
1245
1246 * isearch.el (isearch-filter-predicates): Rename from
1247 `isearch-filter-predicate'. Doc fix. (Bug#11378)
1248 (isearch-message-prefix): Display text from the property
1249 `isearch-message-prefix' of the currently active filters.
1250 (isearch-search): Don't compare `isearch-filter-predicate' with
1251 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
1252 on `isearch-filter-predicates'. Also check `search-invisible' for t
1253 or call `isearch-range-invisible'.
1254 (isearch-filter-visible): Make obsolete.
1255 (isearch-lazy-highlight-search):
1256 Call `run-hook-with-args-until-failure' on
1257 `isearch-filter-predicates' and use `isearch-range-invisible'.
1258
1259 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
1260 `isearch-filter-predicates' instead of `funcall'ing
1261 `isearch-filter-predicate'.
1262 (Info-mode): Set `Info-isearch-filter' to
1263 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
1264
1265 * dired-aux.el (dired-isearch-filter-predicate-orig):
1266 Remove variable.
1267 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
1268 (dired-isearch-filenames-end): Add and remove
1269 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
1270 instead of changing the value of `isearch-filter-predicate'.
1271 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
1272 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
1273 Put property `isearch-message-prefix' to "filename " on
1274 `dired-isearch-filter-filenames'.
1275
1276 * wdired.el (wdired-change-to-wdired-mode):
1277 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
1278 locally instead of changing `isearch-filter-predicate'.
1279 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
1280
1281 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
1282
1283 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
1284 return the commit hash (Bug#14459). Also set the
1285 `vc-git-detached' property.
1286 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
1287 (vc-git-mode-line-string): Use the same help-echo format whether
1288 in detached mode or not, because we know the actual revision now.
1289 When in detached mode, shorten the revision to 7 chars.
1290
1291 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
1292
1293 * emacs-lisp/easy-mmode.el (define-minor-mode):
1294 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
1295 mode hook and provide a docstring.
1296
1297 2013-05-27 Alan Mackenzie <acm@muc.de>
1298
1299 Remove spurious syntax-table text properties inserted by C-y.
1300 * progmodes/cc-mode.el (c-after-change): Also clear hard
1301 syntax-table property with value nil.
1302
1303 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
1304
1305 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
1306 when reading the events; the buffer layout shall not be changed.
1307
1308 2013-05-27 Leo Liu <sdl.web@gmail.com>
1309
1310 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
1311 New variable.
1312 (inferior-octave-directory-tracker): Automatically re-sync
1313 default-directory.
1314 (octave-help): Improve handling of 'See also'.
1315
1316 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
1317
1318 * doc-view.el: Minor naming convention tweaks.
1319 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
1320
1321 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
1322 even if there's no `display' property yet (bug#14435).
1323
1324 2013-05-25 Eli Zaretskii <eliz@gnu.org>
1325
1326 * subr.el (unmsys--file-name): Rename from reveal-filename.
1327
1328 * Makefile.in (custom-deps, finder-data, autoloads)
1329 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
1330 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
1331 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
1332
1333 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1334
1335 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
1336 error-completion on the first 2 args of condition-case (bug#14446).
1337 Don't burp at EOB.
1338
1339 2013-05-25 Leo Liu <sdl.web@gmail.com>
1340
1341 * comint.el (comint-previous-matching-input): Do not flood the
1342 *Messages* buffer with trivial messages.
1343
1344 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1345
1346 * progmodes/flymake.el (flymake-nop): Don't return a string.
1347 (flymake-set-at): Fix typo.
1348
1349 * simple.el (read--expression): New function, extracted from
1350 eval-expression. Set completion-at-point-functions (bug#14465).
1351 (eval-expression, eval-minibuffer): Use it.
1352
1353 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
1354
1355 * progmodes/flymake.el (flymake-save-buffer-in-file)
1356 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
1357 (flymake-selected-frame, flymake-log, flymake-ins-after)
1358 (flymake-set-at, flymake-get-buildfile-from-cache)
1359 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
1360 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
1361 Refine the doc string.
1362 (flymake-get-file-name-mode-and-masks): Reformat.
1363 (flymake-get-real-file-name-function): Fix a minor bug.
1364
1365 2013-05-24 Juri Linkov <juri@jurta.org>
1366
1367 * progmodes/grep.el (grep-mode-font-lock-keywords):
1368 Support =linenumber= format used by git-grep for lines with
1369 function names. (Bug#13549)
1370
1371 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
1372
1373 * progmodes/octave.el (octave-smie-rules): Return nil rather than
1374 0 after a semi-colon; it works better for smie-auto-fill.
1375 (octave--indent-new-comment-line): New function.
1376 (octave-indent-new-comment-line): Use it (indirectly).
1377 (octave-mode): Don't disable smie-auto-fill. Use add-function to
1378 modify comment-line-break-function.
1379
1380 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
1381 (smie-setup): Use add-function to set it.
1382
1383 2013-05-24 Sam Steingold <sds@gnu.org>
1384
1385 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
1386 argument (before the `interactive' argument).
1387
1388 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
1389
1390 * image-mode.el (image-mode-winprops): Add winprops to
1391 image-mode-winprops-alist before running
1392 image-mode-new-window-functions.
1393 * doc-view.el (doc-view-new-window-function): Don't delay
1394 doc-view-goto-page via timers (bug#14435).
1395
1396 2013-05-24 Tassilo Horn <tsdh@gnu.org>
1397
1398 * doc-view.el: Integrate with desktop.el. (Bug#14435)
1399 (doc-view-desktop-save-buffer): New function.
1400 (doc-view-restore-desktop-buffer): New function.
1401 (desktop-buffer-mode-handlers):
1402 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
1403 handler.
1404 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
1405 `desktop-save-buffer' function.
1406
1407 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
1408
1409 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
1410 (tramp-gvfs-file-name-handler): Raise a user error when
1411 `tramp-gvfs-enabled' is nil.
1412 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
1413 Do not raise a user error when loading package. (Bug#14447)
1414
1415 * net/xesam.el: Move to obsolete/.
1416
1417 2013-05-24 Glenn Morris <rgm@gnu.org>
1418
1419 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
1420
1421 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
1422
1423 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
1424 (Info-find-node, Man-getpage-in-background): Declare.
1425
1426 * mail/unrmail.el (unrmail):
1427 Replace obsolete detect-coding-with-priority.
1428
1429 * net/socks.el (socks-split-string): Use this rather than split-string.
1430 (socks-nslookup-host): Update for above change.
1431 (dynamic-choice, s5-dynamic-choice-match)
1432 (s5-dynamic-choice-match-inline, s5-widget-value-create):
1433 Comment out unused code.
1434
1435 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
1436 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
1437 (gud-tooltip-echo-area): Make obsolete.
1438 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
1439
1440 * progmodes/js.el (js--optimize-arglist): Declare.
1441
1442 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
1443
1444 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
1445 (ediff-window-C): Declare.
1446
1447 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
1448 Tweak requires to silence compiler.
1449
1450 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
1451 (he-search-string, he-tried-table, he-expand-list)
1452 (he-init-string, he-string-member, he-substitute-string)
1453 (he-reset-string): Declare.
1454
1455 * obsolete/options.el (list-options): Use custom-variable-p,
1456 rather than obsolete alias.
1457
1458 2013-05-23 Sam Steingold <sds@gnu.org>
1459
1460 * simple.el (shell-command-on-region): Pass the `replace' argument
1461 down to `call-process-region' to comply with the doc as reported on
1462 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
1463
1464 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
1465
1466 * emacs-lisp/smie.el (smie-indent-forward-token)
1467 (smie-indent-backward-token): Handle string tokens (bug#14381).
1468
1469 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1470
1471 * ielm.el (ielm-menu): New menu.
1472 (inferior-emacs-lisp-mode): Set comment-start.
1473
1474 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1475
1476 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
1477 Fix deactivate action.
1478
1479 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
1480 Add cleveref macros.
1481
1482 * lisp/textmodes/reftex-parse.el
1483 (reftex-locate-bibliography-files): Accept options for
1484 bibliography commands.
1485 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
1486 Add addbibresource. Basic Biblatex support.
1487
1488 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
1489
1490 * net/tramp-gvfs.el (top):
1491 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
1492 when loading package. (Bug#14447)
1493
1494 2013-05-23 Glenn Morris <rgm@gnu.org>
1495
1496 * progmodes/js.el: No need to load comint when compiling.
1497 (ring-insert, comint-send-string, comint-send-input)
1498 (comint-last-input-end, ido-chop): Declare.
1499
1500 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
1501 * vc/ediff-mult.el: Adjust requires.
1502 (ediff-directories-internal, ediff-directory-revisions-internal)
1503 (ediff-patch-file-internal): Declare.
1504 * vc/ediff-ptch.el: Adjust requires.
1505 (ediff-use-last-dir, ediff-buffers-internal): Declare.
1506 (ediff-find-file): Autoload.
1507 * vc/ediff-util.el: No need to load ediff when compiling.
1508 (ediff-regions-internal): Declare.
1509 * vc/ediff-wind.el: Adjust requires.
1510 (ediff-compute-toolbar-width): Define when compiling.
1511 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
1512 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
1513 (dired-get-filename, dired-get-marked-files)
1514 (ediff-last-dir-patch, ediff-patch-default-directory)
1515 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
1516 (ediff-patch-buffer-internal): Declare.
1517
1518 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
1519 (ispell-process, ispell-buffer-local-words, lm-summary)
1520 (lm-section-start, lm-section-end): Declare.
1521 (checkdoc-ispell-init): Simplify.
1522
1523 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
1524 (he-string-member, he-reset-string, he-substitute-string): Declare.
1525
1526 * eshell/em-ls.el: Adjust requires.
1527 (eshell-glob-regexp): Declare.
1528 * eshell/em-tramp.el: Adjust requires.
1529 (eshell-parse-command): Autoload.
1530 * eshell/em-xtra.el: Adjust requires.
1531 (eshell-parse-command): Autoload.
1532 * eshell/esh-ext.el: Adjust requires.
1533 (eshell-parse-command, eshell-close-handles): Autoload.
1534 * eshell/esh-io.el: Adjust requires.
1535 (eshell-output-filter): Autoload.
1536 * eshell/esh-util.el: No need to load tramp when compiling.
1537 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
1538 Declare.
1539 (eshell-parse-ange-ls): Require ange-ftp and tramp.
1540 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1541 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
1542 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
1543 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
1544 * eshell/esh-opt.el, eshell/esh-proc.el:
1545 * eshell/esh-var.el: Adjust requires.
1546 * eshell/eshell.el: Do not require esh-util twice.
1547 (eshell-add-input-to-history): Declare.
1548 (eshell-command): Check history module is active before using it.
1549
1550 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
1551
1552 2013-05-22 Leo Liu <sdl.web@gmail.com>
1553
1554 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
1555
1556 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
1557
1558 * autorevert.el (auto-revert-notify-add-watch)
1559 (auto-revert-notify-handler): Add `attrib' for the inotify case,
1560 it indicates changes in file modification time.
1561
1562 2013-05-22 Glenn Morris <rgm@gnu.org>
1563
1564 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
1565 Always delete the autoloaded function from the noruntime and
1566 unresolved functions lists.
1567
1568 * allout.el: No need to load epa, epg, overlay when compiling.
1569 (epg-context-set-passphrase-callback, epg-list-keys)
1570 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
1571 (epg-key-user-id-list): Declare.
1572
1573 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
1574 (viper-set-parsing-style-toggling-macro)
1575 (viper-set-emacs-state-searchstyle-macros):
1576 Use called-interactively-p on Emacs.
1577 (viper-looking-back): Make it an obsolete alias. Update callers.
1578 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
1579 Use looking-back rather than viper-looking-back.
1580 (viper-tmp-insert-at-eob, viper-enlarge-region)
1581 (viper-read-string-with-history, viper-register-to-point)
1582 (viper-append-to-register, viper-change-state-to-vi)
1583 (viper-backward-char-carefully, viper-forward-char-carefully)
1584 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
1585 (viper-change-state-to-emacs): Declare.
1586 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
1587 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
1588 * emulation/viper-mous.el: Do not load viper-cmd.
1589 (viper-backward-char-carefully, viper-forward-char-carefully)
1590 (viper-forward-word, viper-adjust-window): Declare.
1591
1592 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
1593
1594 * progmodes/idlw-help.el (idlwave-help-fontify):
1595 Use called-interactively-p.
1596
1597 * term/w32console.el (w32-get-console-codepage)
1598 (w32-get-console-output-codepage): Declare.
1599
1600 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
1601 Remove unnecessary declarations.
1602 (dframe-message): Doc fix.
1603
1604 * info.el (dframe-select-attached-frame, dframe-current-frame):
1605 Declare.
1606
1607 * speedbar.el (speedbar-message): Make it an obsolete alias.
1608 Update all callers.
1609 (speedbar-with-attached-buffer)
1610 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
1611 (speedbar-with-writable): Use backquote.
1612 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
1613 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1614 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
1615 rather than speedbar- aliases.
1616 * mail/rmail.el: Load dframe rather than speedbar when compiling.
1617 (speedbar-make-specialized-keymap, speedbar-insert-button)
1618 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
1619 (speedbar-do-function-pointer): Declare.
1620 (rmail-speedbar-button, rmail-speedbar-find-file)
1621 (rmail-speedbar-move-message):
1622 Use dframe-with-attached-buffer rather than speedbar- alias.
1623 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
1624 (dframe-message, speedbar-make-specialized-keymap)
1625 (speedbar-add-expansion-list, speedbar-mode-functions-list)
1626 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
1627 (speedbar-insert-button, dframe-select-attached-frame)
1628 (dframe-maybee-jump-to-attached-frame)
1629 (speedbar-change-initial-expansion-list)
1630 (speedbar-previously-used-expansion-list-name): Declare.
1631 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
1632 Use dframe-message, dframe-with-attached-buffer rather than
1633 speedbar- aliases.
1634 (gud-sentinel): Silence compiler.
1635 * progmodes/vhdl-mode.el (speedbar-refresh)
1636 (speedbar-do-function-pointer, speedbar-add-supported-extension)
1637 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
1638 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
1639 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
1640 (speedbar-file-lists, speedbar-make-tag-line)
1641 (speedbar-line-directory, speedbar-goto-this-file)
1642 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
1643 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
1644 (speedbar-make-button, speedbar-reset-scanners)
1645 (speedbar-files-item-info, speedbar-line-text)
1646 (speedbar-find-file-in-frame, speedbar-set-timer)
1647 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
1648 (speedbar-with-writable): Do not (re)define it.
1649 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
1650 rather than speedbar- alias.
1651
1652 2013-05-21 Leo Liu <sdl.web@gmail.com>
1653
1654 * progmodes/octave.el (octave-mode-menu): Update and re-organize
1655 menu items.
1656 (octave-mode): Tweak fill-nobreak-predicate.
1657 (inferior-octave-startup): Check process to avoid infinite loop.
1658 (inferior-octave): Pop to buffer first to show abornmal process
1659 exit information.
1660
1661 2013-05-21 Glenn Morris <rgm@gnu.org>
1662
1663 * printing.el (pr-menu-bar): Define when compiling.
1664
1665 2013-05-21 Leo Liu <sdl.web@gmail.com>
1666
1667 * progmodes/octave.el (octave-auto-fill): Remove.
1668 (octave-indent-new-comment-line): Improve.
1669 (octave-mode): Use auto fill mode through
1670 comment-line-break-function and fill-nobreak-predicate.
1671 (octave-goto-function-definition): Support DEFUN_DLD.
1672 (octave-beginning-of-defun): Small tweak.
1673 (octave-help): Show parent directory.
1674
1675 2013-05-21 Glenn Morris <rgm@gnu.org>
1676
1677 * files.el (dired-unmark):
1678 * progmodes/gud.el (gdb-input): Update declarations.
1679
1680 * calculator.el (electric, ehelp): No need to load when compiling.
1681 (Electric-command-loop, electric-describe-mode): Declare.
1682
1683 * doc-view.el (doc-view-current-converter-processes): Move before use.
1684
1685 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1686 Move MODE-set-explicitly definition before use.
1687
1688 * international/mule-diag.el (mule-diag):
1689 Don't use obsolete window-system-version.
1690
1691 * mail/feedmail.el (smtpmail): No need to load when compiling.
1692 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
1693
1694 * mail/mail-utils.el (rfc822): No need to load when compiling.
1695 (rfc822-addresses): Autoload it.
1696 (mail-strip-quoted-names): Trivial simplification.
1697
1698 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
1699 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
1700
1701 * net/snmp-mode.el (tempo): Don't duplicate requires.
1702
1703 * progmodes/prolog.el (info): No need to load when compiling.
1704 (comint): Require before shell requires it.
1705 (Info-goto-node): Autoload it.
1706 (Info-follow-nearest-node): Declare.
1707 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
1708
1709 * textmodes/artist.el (picture-mode-exit): Declare.
1710
1711 * textmodes/reftex-parse.el (reftex-parse-from-file):
1712 Trivial rewrite so the compiler can parse it better.
1713
1714 2013-05-20 Leo Liu <sdl.web@gmail.com>
1715
1716 * progmodes/octave.el (octave-help-mode-map)
1717 (octave-help-mode-finish-hook): New variables.
1718 (octave-help-mode, octave-help-mode-finish): New functions.
1719 (octave-help): Use octave-help-mode.
1720
1721 2013-05-20 Glenn Morris <rgm@gnu.org>
1722
1723 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
1724
1725 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
1726
1727 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
1728 start at point, so that expansion starting right after opening
1729 slash in a regexp is recognized.
1730 (ruby-syntax-before-regexp-re): New defvar, extracted from
1731 ruby-syntax-propertize-function. Since the value of this regexp
1732 is looked up at runtime now, we should be able to turn
1733 `ruby-syntax-methods-before-regexp' into a defcustom later.
1734 (ruby-syntax-propertize-function): Split regexp matching into two
1735 parts, for opening and closing slashes. That allows us to skip
1736 over string interpolations and support multiline regexps.
1737 Don't call `ruby-syntax-propertize-expansions', instead use another rule
1738 for them, which calls `ruby-syntax-propertize-expansion'.
1739 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
1740 call to `ruby-syntax-propertize-function'.
1741 (ruby-syntax-propertize-expansion): Extracted from
1742 `ruby-syntax-propertize-expansions'. Handles one expansion.
1743 (ruby-syntax-propertize-percent-literal): Leave point right after
1744 the percent symbol, so that the expression expansion rule can
1745 propertize the contents.
1746 (ruby-syntax-propertize-heredoc): Leave point at bol following the
1747 heredoc openers.
1748 (ruby-syntax-propertize-expansions): Remove.
1749
1750 2013-05-18 Juri Linkov <juri@jurta.org>
1751
1752 * man.el (Man-default-man-entry): Remove `-' from the end
1753 of the default value. (Bug#14400)
1754
1755 2013-05-18 Glenn Morris <rgm@gnu.org>
1756
1757 * comint.el (comint-password-prompt-regexp):
1758 Allow "password for XXX" where XXX contains colons (eg https://...).
1759
1760 2013-05-18 Leo Liu <sdl.web@gmail.com>
1761
1762 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
1763 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
1764 (octave-source-directories): Don't check process.
1765 (octave-source-directories, octave-find-definition): Doc fix.
1766
1767 2013-05-18 Glenn Morris <rgm@gnu.org>
1768
1769 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
1770 Remove backspace/delete bindings. (Bug#14392)
1771
1772 * cus-dep.el (custom-make-dependencies): Sort the output.
1773 (custom-versions-load-alist): Convert comment to doc.
1774
1775 2013-05-17 Leo Liu <sdl.web@gmail.com>
1776
1777 * newcomment.el (comment-search-backward): Stricter in finding
1778 comment start. (Bug#14303)
1779
1780 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
1781 (octave-comment-start-skip): Properly anchored.
1782
1783 2013-05-17 Leo Liu <sdl.web@gmail.com>
1784
1785 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
1786 Clean up when turned off. (Bug#14395)
1787 (smie--highlight-matching-block-overlay): No longer buffer-local.
1788 (smie-highlight-matching-block): Adjust.
1789
1790 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
1791
1792 Doc string fix for "nanoseconds" (Bug#14406).
1793 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
1794 Fix doc string typo that had "nanoseconds" instead of "microseconds".
1795
1796 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
1797
1798 * calc/calc-units.el (math-extract-units): Preserve powers
1799 of units.
1800
1801 2013-05-17 Leo Liu <sdl.web@gmail.com>
1802
1803 * subr.el (delete-consecutive-dups): New function.
1804 * ido.el (ido-set-matches-1): Use it.
1805 * progmodes/octave.el (inferior-octave-completion-table): Use it.
1806 * ido.el (ido-remove-consecutive-dups): Remove.
1807
1808 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1809
1810 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
1811 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
1812 regexp-opt's `words'.
1813
1814 2013-05-16 Leo Liu <sdl.web@gmail.com>
1815
1816 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
1817 (smie--highlight-matching-block-overlay)
1818 (smie--highlight-matching-block-lastpos)
1819 (smie--highlight-matching-block-timer): New variables.
1820 (smie-highlight-matching-block): New function.
1821 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
1822 (smie-setup): Conditionally enable smie-blink-matching-open.
1823
1824 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
1825
1826 Sync with upstream verilog-mode r840.
1827 * progmodes/verilog-mode.el (verilog-mode-version)
1828 (verilog-mode-release-date): Update.
1829 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
1830 (verilog-sig-tieoff): Fix string error on
1831 AUTORESET with colon define, bug594. Reported by Andrew Hou.
1832 (verilog-read-decls): Fix parameters confusing
1833 AUTOINST interfaces, bug565. Reported by Leith Johnson.
1834
1835 2013-05-16 Eli Zaretskii <eliz@gnu.org>
1836
1837 * subr.el (reveal-filename): New function.
1838
1839 * loadup.el: Compute Emacs executable versions on MS-Windows,
1840 where executables have the .exe extension. Add a hard link
1841 emacs-XX.YY.ZZ.exe on MS-Windows.
1842
1843 * Makefile.in (XARGS_LIMIT): New variable.
1844 (custom-deps, finder-data, autoloads)
1845 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
1846 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
1847 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
1848 (compile-main): Limit xargs according to $(XARGS_LIMIT).
1849
1850 2013-05-16 Leo Liu <sdl.web@gmail.com>
1851
1852 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
1853 (octave-mode-menu, octave-mode-map): Remove its uses.
1854
1855 2013-05-16 Reto Zimmermann <reto@gnu.org>
1856
1857 Sync with upstream vhdl mode v3.34.2.
1858 * progmodes/vhdl-mode.el: Use `push' throughout.
1859 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
1860 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
1861 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
1862 (vhdl-actual-generic-name): New option to derive actual generic name.
1863 (vhdl-port-paste-signals): Replace formal by actual generics.
1864 (vhdl-beautify): New name for old group vhdl-align. Update users.
1865 (vhdl-beautify-options): New option.
1866 (vhdl-last-input-event): New compat alias. Use throughout.
1867 (vhdl-goto-line): Replace user level function `goto-line'.
1868 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
1869 vhdl-fix-statement-buffer.
1870 (vhdl-create-mode-menu): Add some entries.
1871 (vhdl-align-region-groups): Respect vhdl-beautify-options.
1872 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
1873 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
1874 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
1875 to force statements on one line.
1876 (vhdl-remove-trailing-spaces-region):
1877 New, split from vhdl-remove-trailing-spaces.
1878 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
1879 Respect vhdl-beautify-options.
1880 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
1881 (vhdl-update-sensitivity-list): Not add with index if exists without.
1882 Not include array index with signal. Ignore keywords in comments.
1883 (vhdl-get-visible-signals): Regexp tweaks.
1884 (vhdl-template-component-inst): Handle empty library.
1885 (vhdl-template-type): Add template for 'enum' type.
1886 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
1887 Use vhdl-replace-string.
1888 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
1889 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
1890 (vhdl-speedbar-initialize): Update for above name change.
1891 (vhdl-compose-wire-components): Fix in handling of constants.
1892 (vhdl-error-regexp-emacs-alist): New variable.
1893 (vhdl-error-regexp-add-emacs): New function;
1894 adds support for new compile.el (Emacs 22+)
1895 (vhdl-generate-makefile-1): Change target order for single lib. units.
1896 Allow use of absolute file names.
1897
1898 2013-05-16 Leo Liu <sdl.web@gmail.com>
1899
1900 * simple.el (prog-indent-sexp): Indent enclosing defun.
1901
1902 2013-05-15 Glenn Morris <rgm@gnu.org>
1903
1904 * cus-start.el (show-trailing-whitespace): Move to editing basics.
1905 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
1906 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
1907 (whitespace-highlight): Move to whitespace group.
1908
1909 * comint.el (comint-source):
1910 * pcmpl-linux.el (pcmpl-linux):
1911 * shell.el (shell-faces):
1912 * eshell/esh-opt.el (eshell-opt):
1913 * international/ccl.el (ccl): Remove empty custom groups.
1914
1915 * completion.el (dynamic-completion-mode):
1916 * jit-lock.el (jit-lock-debug-mode):
1917 * minibuffer.el (completion-in-region-mode):
1918 * type-break.el (type-break-mode-line-message-mode)
1919 (type-break-query-mode):
1920 * emulation/tpu-edt.el (tpu-edt-mode):
1921 * progmodes/subword.el (global-subword-mode, global-superword-mode):
1922 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
1923 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
1924
1925 * term/xterm.el (xterm): Change parent group to terminals.
1926
1927 * master.el (master): Remove empty custom group.
1928 (master-mode): Remove unused :group argument.
1929 * textmodes/refill.el (refill): Remove empty custom group.
1930 (refill-mode): Remove unused :group argument.
1931
1932 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
1933
1934 * cus-dep.el: Provide a feature.
1935 (custom-make-dependencies): Ignore dotfiles (dir-locals).
1936 Don't mistakenly ignore files whose basenames match a basename
1937 from preloaded-file-list (eg cedet/ede/simple.el).
1938 Add a fallback method for getting :group.
1939
1940 2013-05-15 Juri Linkov <juri@jurta.org>
1941
1942 * isearch.el (isearch-char-by-name): Rename from
1943 `isearch-insert-char-by-name'. Doc fix.
1944 (isearch-forward): Mention `isearch-char-by-name' in
1945 the docstring. (Bug#13348)
1946
1947 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
1948 `exit-minibuffer' instead of
1949 `isearch-nonincremental-exit-minibuffer'.
1950 (isearch-edit-string): Remove mention of
1951 `isearch-nonincremental-exit-minibuffer' from docstring.
1952 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
1953 (isearch-forward-exit-minibuffer)
1954 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
1955
1956 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1957
1958 * loadup.el: Just use unversioned DOC.
1959
1960 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
1961 literals as extending to EOB.
1962 (nxml-last-fontify-end): Remove unused variable.
1963 (nxml-after-change1): Use with-silent-modifications.
1964 (nxml-extend-after-change-region): Simplify.
1965 (nxml-extend-after-change-region1): Remove function.
1966 (nxml-after-change1): Don't adjust for dependent regions.
1967 (nxml-fontify-matcher): Simplify.
1968 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
1969 (xmltok-add-dependent): Remove function.
1970 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
1971 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
1972 (xmltok-scan-prolog-after-processing-instruction-open): Treat
1973 unclosed <[[, <?, comment, and other literals as extending to EOB.
1974 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
1975 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
1976 Remove functions.
1977 (rng-do-some-validation-1): Don't mark dependent regions.
1978 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
1979 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
1980 (nxml-clear-dependent-regions): Remove functions.
1981 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
1982 (nxml-ensure-scan-up-to-date):
1983 Don't clear&mark dependent regions.
1984
1985 2013-05-15 Leo Liu <sdl.web@gmail.com>
1986
1987 * progmodes/octave.el (octave-goto-function-definition):
1988 Improve and fix callers.
1989
1990 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1991
1992 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
1993 the setter (bug#14387).
1994
1995 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
1996 surrounding group (bug#14402).
1997
1998 2013-05-14 Juri Linkov <juri@jurta.org>
1999
2000 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
2001 (Bug#14390)
2002
2003 2013-05-14 Glenn Morris <rgm@gnu.org>
2004
2005 * progmodes/f90.el (f90-imenu-generic-expression):
2006 Fix typo in 2013-05-08 change. (Bug#14402)
2007
2008 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
2009
2010 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
2011 Remove signals for which replies are never received.
2012
2013 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
2014
2015 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
2016 (gdb-handler-alist, gdb-handler-number): Remove variables.
2017 (gdb-handler-list): New variable.
2018 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
2019 (gdb-pending-handler-p, gdb-handle-reply)
2020 (gdb-remove-all-pending-triggers): New functions.
2021 (gdb-discard-unordered-replies): New defcustom.
2022 (gdb-handler): New defstruct.
2023 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
2024 instead of gdb-pending-triggers. Update docstring.
2025 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
2026 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
2027 (gdb-var-update-handler, def-gdb-auto-update-trigger)
2028 (def-gdb-auto-update-handler, gdb-get-changed-registers)
2029 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
2030 (gdb-frame-handler): Pending triggers are now automatically managed.
2031 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
2032 Remove argument.
2033 (gdb-input): Automatically handles pending triggers. Update docstring.
2034 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
2035 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
2036 Update comments.
2037 (gdb-done-or-error): Now use gdb-handle-reply.
2038
2039 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
2040
2041 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
2042 gdb-debug-log.
2043
2044 2013-05-14 Glenn Morris <rgm@gnu.org>
2045
2046 * subr.el (user-emacs-directory-warning): New option.
2047 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
2048
2049 2013-05-14 Leo Liu <sdl.web@gmail.com>
2050
2051 * progmodes/octave.el (octave-font-lock-keywords): Fix error
2052 during redisplay.
2053 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
2054 (octave-font-lock-texinfo-comment): Fix invalid search bound
2055 error: wrong side of point.
2056
2057 2013-05-14 Glenn Morris <rgm@gnu.org>
2058
2059 * progmodes/flymake.el (flymake-xml-program): New option.
2060 (flymake-xml-init): Use it.
2061
2062 * term/xterm.el: Provide a feature.
2063
2064 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
2065
2066 2013-05-13 Glenn Morris <rgm@gnu.org>
2067
2068 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
2069 Add compat aliases as a hack workaround. (Bug#14384)
2070
2071 2013-05-13 Leo Liu <sdl.web@gmail.com>
2072
2073 * progmodes/octave.el (octave-indent-comment): Fix indentation for
2074 ###, and %!.
2075 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
2076 C-M-q.
2077 (octave-comment-start-skip): Include %!.
2078 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
2079
2080 2013-05-12 Leo Liu <sdl.web@gmail.com>
2081
2082 * progmodes/octave.el (inferior-octave-startup): Store the value
2083 of __octave_srcdir__ for octave-source-directories.
2084 (inferior-octave-check-process): New function refactored out of
2085 inferior-octave-send-list-and-digest.
2086 (octave-source-directories)
2087 (octave-find-definition-filename-function): New variables.
2088 (octave-source-directories)
2089 (octave-find-definition-default-filename): New functions.
2090 (octave-find-definition): Improve to find functions implemented in C++.
2091
2092 2013-05-12 Glenn Morris <rgm@gnu.org>
2093
2094 * calendar/diary-lib.el (diary-outlook-format-1):
2095 Don't include dayname in the output. (Bug#14349)
2096
2097 2013-05-11 Glenn Morris <rgm@gnu.org>
2098
2099 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
2100
2101 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
2102 Treat cc-provide like provide.
2103
2104 2013-05-11 Kevin Ryde <user42@zip.com.au>
2105
2106 * cus-dep.el (custom-make-dependencies):
2107 Use generated-autoload-load-name for the sake of files such
2108 such cedet/semantic/bovine/c.el, where the base file name
2109 is not in load-path. (Bug#5277)
2110
2111 2013-05-11 Glenn Morris <rgm@gnu.org>
2112
2113 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
2114 Provide features.
2115
2116 2013-05-11 Leo Liu <sdl.web@gmail.com>
2117
2118 * progmodes/octave.el (octave-indent-comment): Improve.
2119 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
2120 (octave-eldoc-function-signatures, octave-eldoc-function):
2121 New functions.
2122 (octave-mode, inferior-octave-mode): Add eldoc support.
2123
2124 2013-05-11 Richard Stallman <rms@gnu.org>
2125
2126 * epa.el (epa-decrypt-file): Take output file name as argument
2127 and read it using `interactive'.
2128
2129 2013-05-11 Leo Liu <sdl.web@gmail.com>
2130
2131 * progmodes/octave.el (octave-beginning-of-line)
2132 (octave-end-of-line): Check before using up-list because it jumps
2133 out of more syntactic contructs since moving to smie.
2134 (octave-indent-comment): New function.
2135 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
2136 (octave-begin-keywords, octave-end-keywords)
2137 (octave-reserved-words, octave-smie-bnf-table)
2138 (octave-smie-rules): Add new keywords from Octave 3.6.4.
2139
2140 2013-05-11 Glenn Morris <rgm@gnu.org>
2141
2142 * faces.el (internal-face-x-get-resource):
2143 * frame.el (ns-display-monitor-attributes-list):
2144 * calc/calc-aent.el (math-to-radians-2): Fix declarations.
2145
2146 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
2147
2148 * calc/calc-menu.el: Make it loadable in isolation.
2149
2150 * net/eudcb-bbdb.el: Make it loadable without bbdb.
2151 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
2152 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
2153 (eudc-bbdb-query-internal): Require 'bbdb.
2154
2155 * lpr.el (lpr-headers-switches):
2156 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
2157
2158 * progmodes/sql.el (sql-login-params): Fix and improve :type.
2159
2160 * emulation/edt-mapper.el: In batch mode, error rather than hang.
2161
2162 * term.el (term-set-escape-char): Make it idempotent.
2163
2164 2013-05-10 Leo Liu <sdl.web@gmail.com>
2165
2166 * progmodes/octave.el (inferior-octave-completion-table):
2167 No longer a function and all uses changed. Use cache to speed up
2168 completion due to bug#11906.
2169 (octave-beginning-of-defun): Re-write to be more general.
2170
2171 2013-05-10 Glenn Morris <rgm@gnu.org>
2172
2173 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
2174
2175 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
2176
2177 * comint.el (comint-redirect-send-command-to-process): Use :around
2178 rather than :override for comint-redirect-filter.
2179 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
2180 Call it instead of comint-redirect-original-filter-function (which
2181 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
2182
2183 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
2184
2185 * frame.el (display-monitor-attributes-list): Add NS case.
2186 (ns-display-monitor-attributes-list): Declare.
2187
2188 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
2189
2190 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
2191
2192 2013-05-09 Glenn Morris <rgm@gnu.org>
2193
2194 * international/fontset.el (vertical-centering-font-regexp):
2195 Set standard-value.
2196
2197 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
2198
2199 * bookmark.el (bookmark-search-delay):
2200 * cus-start.el (vertical-centering-font-regexp):
2201 * ps-mule.el (ps-mule-font-info-database-default):
2202 * ps-print.el (ps-default-fg, ps-default-bg):
2203 * type-break.el (type-break-good-break-interval):
2204 * whitespace.el (whitespace-indentation-regexp)
2205 (whitespace-space-after-tab-regexp):
2206 * emacs-lisp/testcover.el (testcover-1value-functions)
2207 (testcover-noreturn-functions, testcover-progn-functions)
2208 (testcover-prog1-functions):
2209 * emulation/viper-init.el (viper-emacs-state-cursor-color):
2210 * eshell/em-glob.el (eshell-glob-translate-alist):
2211 * play/tetris.el (tetris-tty-colors):
2212 * progmodes/cpp.el (cpp-face-default-list):
2213 * progmodes/flymake.el (flymake-allowed-file-name-masks):
2214 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
2215 (idlwave-help-browser-generic-args):
2216 * progmodes/make-mode.el (makefile-special-targets-list):
2217 * progmodes/python.el (python-shell-virtualenv-path):
2218 * progmodes/verilog-mode.el (verilog-active-low-regexp)
2219 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
2220 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
2221 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
2222 * textmodes/reftex-vars.el (reftex-format-label-function):
2223 * textmodes/remember.el (remember-diary-file): Fix custom types.
2224
2225 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
2226 Add :version.
2227
2228 2013-05-09 Leo Liu <sdl.web@gmail.com>
2229
2230 * progmodes/octave.el (inferior-octave-completion-at-point):
2231 Restore file completion. (Bug#14300)
2232 (inferior-octave-startup): Fix incorrect highlighting for the
2233 first prompt.
2234
2235 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2236
2237 * progmodes/ruby-mode.el: First cut at SMIE support.
2238 (ruby-use-smie): New var.
2239 (ruby-smie-grammar): New constant.
2240 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
2241 (ruby-smie--forward-token, ruby-smie--backward-token)
2242 (ruby-smie-rules): New functions.
2243 (ruby-mode-variables): Setup SMIE if applicable.
2244
2245 2013-05-08 Eli Zaretskii <eliz@gnu.org>
2246
2247 * simple.el (line-move-visual): Signal beginning/end of buffer
2248 only if vertical-motion moved less than it was requested. Avoids
2249 silly incorrect error messages when there are display strings with
2250 multiple newlines at EOL.
2251
2252 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2253
2254 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
2255 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
2256 (prolog-char-quote-workaround):
2257 * progmodes/cperl-mode.el (cperl-under-as-char):
2258 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
2259 Mark as obsolete.
2260 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
2261 their declaration.
2262 (vhdl-mode-syntax-table-init): Remove.
2263
2264 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
2265 last change.
2266
2267 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
2268 syntax for "_".
2269 (ld-script-font-lock-keywords):
2270 Change regexps to use things like \_< and \_>.
2271
2272 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
2273 Change all regexps to use things like \_< and \_>.
2274
2275 * progmodes/autoconf.el (autoconf-definition-regexp)
2276 (autoconf-font-lock-keywords, autoconf-current-defun-function):
2277 Handle a _ with symbol syntax.
2278 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
2279
2280 * progmodes/ada-mode.el (ada-mode-abbrev-table):
2281 Consolidate declaration.
2282 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
2283 the declaration.
2284 (ada-create-syntax-table): Remove.
2285 (ada-capitalize-word): Don't mess with the syntax of "_" since it
2286 already has the right syntax nowadays.
2287 (ada-goto-next-word): Don't change the syntax of "_".
2288
2289 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
2290 with-wrapper-hook.
2291
2292 2013-05-08 Sam Steingold <sds@gnu.org>
2293
2294 * thingatpt.el (thing-at-point): Accept optional second argument
2295 NO-PROPERTIES to strip the text properties from the return value.
2296 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
2297 to `thing-at-point' instead of stripping the properties ourselves.
2298 Also, when `thing-at-point' fails to find a url, prepend "http://"
2299 to the filename at point on the assumption that the user is
2300 pointing at something like gnu.org/gnu.
2301
2302 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
2303
2304 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
2305 * faces.el (crm-separator):
2306 Silence byte-compiler.
2307
2308 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
2309 (tool-bar-map): Remove unneeded defvars.
2310
2311 2013-05-08 Leo Liu <sdl.web@gmail.com>
2312
2313 Re-work a fix for bug#10994 based on Le Wang's patch.
2314 * ido.el (ido-remove-consecutive-dups): New helper.
2315 (ido-completing-read): Use it.
2316 (ido-chop): Revert fix for bug#10994.
2317
2318 2013-05-08 Adam Spiers <emacs@adamspiers.org>
2319
2320 * cus-edit.el (custom-save-variables):
2321 Pretty-print long values. (Bug#14187)
2322
2323 2013-05-08 Glenn Morris <rgm@gnu.org>
2324
2325 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
2326 (m4-mode-syntax-table): Init in the defvar.
2327 (m4-mode-abbrev-table): Let define-derived-mode define it.
2328
2329 2013-05-08 Tom Tromey <tromey@redhat.com>
2330
2331 * progmodes/m4-mode.el (m4-mode-syntax-table):
2332 Do not treat "_" as word constituent. (Bug#14167)
2333
2334 2013-05-07 Glenn Morris <rgm@gnu.org>
2335
2336 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
2337 Remove explicit eshell-isearch-cancel-map.
2338
2339 * progmodes/f90.el (f90-smart-end-names): New option.
2340 (f90-smart-end): Doc fix.
2341 (f90-end-block-optional-name): New constant.
2342 (f90-block-match): Respect f90-smart-end-names.
2343
2344 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2345
2346 * progmodes/octave.el (octave-smie-forward-token): Be more careful
2347 about implicit semi-colons (bug#14218).
2348
2349 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2350
2351 * frame.el (display-monitor-attributes-list)
2352 (frame-monitor-attributes): New functions.
2353
2354 2013-05-06 Leo Liu <sdl.web@gmail.com>
2355
2356 * progmodes/octave.el (octave-syntax-propertize-function): Change
2357 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
2358 (octave-font-lock-keywords): Use octave-operator-regexp.
2359 (octave-completion-at-point): Rename from
2360 octave-completion-at-point-function.
2361 (inferior-octave-directory-tracker): Robustify.
2362 (octave-text-functions): Remove and fix its uses. No such things
2363 any more.
2364
2365 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2366
2367 * emacs-lisp/trace.el (trace--display-buffer): New function.
2368 (trace-make-advice): Use it.
2369
2370 2013-05-06 Juri Linkov <juri@jurta.org>
2371
2372 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
2373 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
2374 Doc fix.
2375 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
2376 in the help string. (Bug#12985)
2377
2378 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2379
2380 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
2381
2382 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2383
2384 * progmodes/perl-mode.el: Add support for here documents.
2385 (perl-syntax-propertize-function): Match here-doc markers.
2386 (perl-syntax-propertize-special-constructs): Find their end.
2387 (perl-imenu-generic-expression): Use [:alnum:].
2388
2389 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
2390 (advice--add-function): Refresh the advice if already present
2391 (bug#14317).
2392
2393 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
2394
2395 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
2396
2397 2013-05-06 Glenn Morris <rgm@gnu.org>
2398
2399 * w32-fns.el (w32-charset-info-alist): Declare.
2400
2401 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
2402 of its defcustom properties.
2403 (eshell-cmpl-initialize): No need to load pcomplete.
2404
2405 * generic-x.el: No need to require comint when compiling.
2406
2407 * net/eudc-export.el: Make it loadable without bbdb.
2408 (top-level): Use require rather than load-library.
2409 (eudc-create-bbdb-record, eudc-bbdbify-phone)
2410 (eudc-batch-export-records-to-bbdb)
2411 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
2412 Require bbdb.
2413
2414 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2415
2416 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
2417 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
2418 some tweaks, instead.
2419
2420 2013-05-05 Leo Liu <sdl.web@gmail.com>
2421
2422 * progmodes/octave.el (octave-font-lock-keywords)
2423 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
2424 (inferior-octave-send-list-and-digest): Improve error message.
2425 (octave-mode, inferior-octave-mode): Use setq-local.
2426 (octave-help): Set info-lookup-mode.
2427
2428 2013-05-05 Richard Stallman <rms@gnu.org>
2429
2430 * vc/compare-w.el (compare-windows-whitespace):
2431 Treat no-break space as whitespace.
2432
2433 * mail/rmailsum.el (rmail-summary-rmail-update):
2434 Detect empty summary and don't change selected message.
2435 (rmail-summary-goto-msg): Likewise.
2436
2437 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
2438 Doc fixes, rename args.
2439
2440 2013-05-05 Alan Mackenzie <acm@muc.de>
2441
2442 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
2443
2444 2013-05-05 Juri Linkov <juri@jurta.org>
2445
2446 * info.el (Info-read-subfile): Use (point-min) instead of (point)
2447 to not add the length of the summary segment to the return value.
2448 (Bug#14125)
2449
2450 2013-05-05 Leo Liu <sdl.web@gmail.com>
2451
2452 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
2453 (inferior-octave-output-filter): Remove.
2454 (octave-send-region, inferior-octave-startup): Fix callers.
2455 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
2456 (octave-binary-file-extensions): New user variable.
2457 (octave-find-definition): Confirm if opening binary files.
2458 (octave-help-file): Use octave-find-definition to get the binary
2459 confirmation.
2460 (octave-help): Adjust for octave-help-file change.
2461
2462 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2463
2464 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
2465 Merge the two entries that handle function definitions.
2466 (pascal--syntax-propertize): New const.
2467 (pascal-mode): Use it. Use setq-local.
2468
2469 2013-05-04 Glenn Morris <rgm@gnu.org>
2470
2471 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
2472 (diary-from-outlook): Respect diary-from-outlook-function.
2473
2474 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2475
2476 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
2477 Move the declaration from C.
2478 (read-minibuffer, eval-minibuffer): Move from C.
2479 (completion-setup-function): Avoid minibuffer-completion-contents.
2480
2481 2013-05-03 Leo Liu <sdl.web@gmail.com>
2482
2483 * progmodes/octave.el (octave-font-lock-keywords): Do not
2484 dehighlight 'end' in comments or strings.
2485 (octave-completing-read, octave-goto-function-definition):
2486 New helpers.
2487 (octave-help-buffer): New user variable.
2488 (octave-help-file, octave-help-function): New button types.
2489 (octave-help): New command and bind it to C-h ;.
2490 (octave-find-definition): New command and bind it to M-.
2491 (user-error): Alias to error if not defined.
2492
2493 2013-05-02 Leo Liu <sdl.web@gmail.com>
2494
2495 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
2496 for \. (bug#14332)
2497 (octave-font-lock-keywords): Include [ and {.
2498
2499 2013-05-02 Leo Liu <sdl.web@gmail.com>
2500
2501 * progmodes/octave.el (inferior-octave-startup-file): Change default.
2502 (inferior-octave): Remove calling comint-mode and return the buffer.
2503 (inferior-octave-startup): Cosmetic changes.
2504
2505 2013-05-02 Leo Liu <sdl.web@gmail.com>
2506
2507 * progmodes/octave.el (octave-syntax-propertize-function):
2508 Include the case when ' is at line beginning. (Bug#14336)
2509
2510 2013-05-02 Glenn Morris <rgm@gnu.org>
2511
2512 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
2513 * desktop.el (vc-dir-mode): Just autoload it here.
2514
2515 2013-05-02 Alan Mackenzie <acm@muc.de>
2516
2517 Eliminate variable c-standard-font-lock-fontify-region-function.
2518 * progmodes/cc-mode.el
2519 (c-standard-font-lock-fontify-region-function): Remove.
2520 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
2521
2522 2013-05-01 Leo Liu <sdl.web@gmail.com>
2523
2524 * progmodes/octave.el: Compatible with older emacs-24 releases.
2525 (inferior-octave-has-built-in-variables): Remove. Built-in
2526 variables were removed from Octave in 2007.
2527 (inferior-octave-startup): Fix uses.
2528 (comint-line-beginning-position): Remove compatibility code for
2529 emacs 21.
2530
2531 2013-05-01 Juri Linkov <juri@jurta.org>
2532
2533 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
2534
2535 2013-05-01 Juri Linkov <juri@jurta.org>
2536
2537 * comint.el (comint-previous-matching-input): Don't print message
2538 "History item: %d" when `isearch-mode' is active.
2539 (comint-history-isearch-message): Print message "History item: %d"
2540 when `comint-input-ring-index' is not empty and this function is
2541 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
2542
2543 2013-05-01 Leo Liu <sdl.web@gmail.com>
2544
2545 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
2546 definitions. Use completion-at-point to insert keywords.
2547 (octave-abbrev-start): Remove.
2548 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
2549
2550 2013-04-30 Leo Liu <sdl.web@gmail.com>
2551
2552 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
2553 change.
2554
2555 2013-04-30 Alan Mackenzie <acm@muc.de>
2556
2557 Handle arbitrarily long C++ member initialisation lists.
2558 * progmodes/cc-engine.el (c-back-over-member-initializers):
2559 new function.
2560 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
2561 (most) member init lists.
2562
2563 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2564
2565 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
2566 variable.
2567
2568 2013-04-30 Leo Liu <sdl.web@gmail.com>
2569
2570 * progmodes/octave.el (octave-variables): Remove. No builtin
2571 variables any more. All converted to functions.
2572 (octave-font-lock-keywords, octave-completion-at-point-function):
2573 Fix uses.
2574 (octave-font-lock-texinfo-comment): New user variable.
2575 (octave-texinfo-font-lock-keywords): New variable for texinfo
2576 comment block.
2577 (octave-function-comment-block): New face.
2578 (octave-font-lock-texinfo-comment): New function.
2579 (octave-mode): Font lock texinfo comment block.
2580
2581 2013-04-29 Leo Liu <sdl.web@gmail.com>
2582
2583 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
2584 indexing expression.
2585 (octave-continuation-string): Do not use \.
2586 (inferior-octave-complete-impossible): Remove.
2587 (inferior-octave-completion-table)
2588 (inferior-octave-completion-at-point): Remove its uses.
2589 (inferior-octave-startup): completion_matches was introduced to
2590 Octave in 1996 so safe to assume it.
2591 (octave-function-file-comment): Improve to follow how Octave does it.
2592 (octave-update-function-file-comment): Tweak.
2593
2594 2013-04-29 Leo Liu <sdl.web@gmail.com>
2595
2596 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
2597 (inferior-octave-startup): Remove inferior-octave-startup-hook.
2598 (octave-function-file-comment): Fix typo.
2599 (octave-sync-function-file-names): Use read-char-choice.
2600
2601 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
2602
2603 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
2604 to t for the less important warnings.
2605
2606 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
2607
2608 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
2609
2610 2013-04-27 Glenn Morris <rgm@gnu.org>
2611
2612 * vc/log-view.el (log-view-current-entry):
2613 Treat "---" separator lines as part of the following rev. (Bug#14169)
2614
2615 2013-04-27 Juri Linkov <juri@jurta.org>
2616
2617 * subr.el (read-number): Doc fix about using it by interactive
2618 code letter `n'. (Bug#14254)
2619
2620 2013-04-27 Juri Linkov <juri@jurta.org>
2621
2622 * desktop.el (desktop-auto-save-timeout): New option.
2623 (desktop-file-checksum): New variable.
2624 (desktop-save): Add optional arg `auto-save' and don't auto-save
2625 if nothing changed.
2626 (desktop-auto-save-timer): New variable.
2627 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
2628 (after-init-hook): Call `desktop-auto-save-set-timer'.
2629 Suggested by Reuben Thomas <rrt@sc3d.org> in
2630 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
2631
2632 2013-04-27 Leo Liu <sdl.web@gmail.com>
2633
2634 * progmodes/octave.el (octave-function-file-p)
2635 (octave-skip-comment-forward, octave-function-file-comment)
2636 (octave-update-function-file-comment): New functions.
2637 (octave-mode-map): Bind C-c ; to
2638 octave-update-function-file-comment.
2639 (octave-mode-menu): Add octave-update-function-file-comment.
2640 (octave-mode, inferior-octave-mode): Fix doc-string.
2641 (octave-insert-defun): Conform to Octave's coding convention.
2642 (Bug#14285)
2643
2644 * files.el (basic-save-buffer): Don't let errors in
2645 before-save-hook prevent saving buffer.
2646
2647 2013-04-20 Roland Winkler <winkler@gnu.org>
2648
2649 * faces.el (read-face-name): Use completing-read if arg multiple
2650 is nil.
2651
2652 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
2653
2654 * ls-lisp.el (ls-lisp-insert-directory): If no files are
2655 displayed, move point to after the totals line.
2656 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
2657 for the details.
2658
2659 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
2660
2661 * emacs-lisp/package.el (package-autoload-ensure-default-file):
2662 Add current dir to the load-path.
2663 (package-generate-autoloads): Don't rely on
2664 autoload-ensure-default-file.
2665
2666 2013-04-26 Reuben Thomas <rrt@sc3d.org>
2667
2668 * textmodes/remember.el (remember-store-in-files): Document that
2669 the file name format is passed to `format-time-string'.
2670
2671 2013-04-26 Leo Liu <sdl.web@gmail.com>
2672
2673 * progmodes/octave.el (octave-sync-function-file-names): New function.
2674 (octave-mode): Use it in before-save-hook.
2675
2676 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2677
2678 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
2679 (bug#14274).
2680
2681 * progmodes/octave.el (octave-smie-forward-token): Properly skip
2682 \n and comment, even if it's not an implicit ; (bug#14218).
2683
2684 2013-04-26 Glenn Morris <rgm@gnu.org>
2685
2686 * subr.el (read-number): Once more use `read' rather than
2687 `string-to-number', to trap non-numeric input. (Bug#14254)
2688
2689 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
2690
2691 * emacs-lisp/syntax.el (syntax-propertize-multiline):
2692 Use `syntax-multiline' text property consistently instead of
2693 `font-lock-multiline'. (Bug#14237)
2694
2695 2013-04-26 Glenn Morris <rgm@gnu.org>
2696
2697 * emacs-lisp/shadow.el (list-load-path-shadows):
2698 No longer necessary to check for duplicate simple.el, since
2699 2012-07-07 change to init_lread to not include installation lisp
2700 directories in load-path when running uninstalled. (Bug#14270)
2701
2702 2013-04-26 Leo Liu <sdl.web@gmail.com>
2703
2704 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
2705 (octave-mode, inferior-octave-mode): Use setq-local.
2706 (octave-not-in-string-or-comment-p): Rename to
2707 octave-in-string-or-comment-p.
2708 (octave-in-comment-p, octave-in-string-p)
2709 (octave-in-string-or-comment-p): Replace defsubst with defun.
2710
2711 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
2712
2713 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
2714
2715 2013-04-25 Bastien Guerry <bzg@gnu.org>
2716
2717 * textmodes/remember.el (remember-data-directory)
2718 (remember-directory-file-name-format): Fix custom types.
2719
2720 2013-04-25 Leo Liu <sdl.web@gmail.com>
2721
2722 * progmodes/octave.el (octave-completion-at-point-function):
2723 Make use of inferior octave process.
2724 (octave-initialize-completions): Remove.
2725 (inferior-octave-completion-table): New function.
2726 (inferior-octave-completion-at-point): Use it.
2727 (octave-completion-alist): Remove.
2728
2729 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
2730
2731 * progmodes/opascal.el: Use font-lock and syntax-propertize.
2732 (opascal-mode-syntax-table): New var.
2733 (opascal-literal-kind, opascal-is-literal-end)
2734 (opascal-literal-token-at): Rewrite.
2735 (opascal--literal-start-re, opascal-font-lock-keywords)
2736 (opascal--syntax-propertize): New constants.
2737 (opascal-font-lock-defaults): Adjust.
2738 (opascal-mode): Use them. Set comment-<foo> variables as well.
2739 (delphi-comment-face, opascal-comment-face, delphi-string-face)
2740 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
2741 (delphi-other-face, opascal-other-face): Remove face variables.
2742 (opascal-save-state): Remove macro.
2743 (opascal-fontifying-progress-step): Remove constant.
2744 (opascal--ignore-changes): Remove var.
2745 (opascal-set-token-property, opascal-parse-next-literal)
2746 (opascal-is-stable-literal, opascal-complete-literal)
2747 (opascal-is-literal-start, opascal-face-of)
2748 (opascal-parse-region, opascal-parse-region-until-stable)
2749 (opascal-fontify-region, opascal-after-change)
2750 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
2751 (opascal-debug-parse-region, opascal-debug-parse-window)
2752 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
2753 (opascal-debug-fontify-buffer): Remove.
2754 (opascal-debug-mode-map): Adjust accordingly.
2755
2756 2013-04-25 Leo Liu <sdl.web@gmail.com>
2757
2758 Merge octave-mod.el and octave-inf.el into octave.el with some
2759 cleanups.
2760 * progmodes/octave.el: New file renamed from octave-mod.el.
2761 * progmodes/octave-inf.el: Merged into octave.el.
2762 * progmodes/octave-mod.el: Renamed to octave.el.
2763
2764 2013-04-25 Tassilo Horn <tsdh@gnu.org>
2765
2766 * textmodes/reftex-vars.el
2767 (reftex-label-ignored-macros-and-environments): New defcustom.
2768
2769 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
2770
2771 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
2772
2773 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
2774 (smie-indent-keyword): Improve the check to ensure that the next
2775 comment is really on the same line.
2776 (smie-indent-comment): Don't align with a subsequent closer (or eob).
2777
2778 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
2779 semi-colons if the line is not otherwise empty (bug#14218).
2780
2781 2013-04-25 Glenn Morris <rgm@gnu.org>
2782
2783 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
2784
2785 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
2786
2787 * progmodes/opascal.el (opascal-set-token-property): Rename from
2788 opascal-set-text-properties and only set `token' (bug#14134).
2789 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
2790 (opascal-literal-text-properties): Remove.
2791 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
2792 Adjust callers.
2793
2794 2013-04-24 Reuben Thomas <rrt@sc3d.org>
2795
2796 * textmodes/remember.el (remember-handler-functions): Add an
2797 option for a new handler `remember-store-in-files'.
2798 (remember-data-directory, remember-directory-file-name-format):
2799 New options.
2800 (remember-store-in-files): New function to store remember notes
2801 as separate files within a directory.
2802
2803 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
2804
2805 * progmodes/compile.el (compilation-next-error-function):
2806 Pass "formats" to compilation-find-file (bug#11777).
2807
2808 2013-04-24 Glenn Morris <rgm@gnu.org>
2809
2810 * vc/vc-bzr.el (vc-bzr-print-log):
2811 * vc/vc-hg.el (vc-hg-print-log):
2812 * vc/vc-svn.el (vc-svn-print-log):
2813 Fix START-REVISION with LIMIT != 1. (Bug#14168)
2814
2815 * vc/vc-bzr.el (vc-bzr-print-log):
2816 * vc/vc-cvs.el (vc-cvs-print-log):
2817 * vc/vc-git.el (vc-git-print-log):
2818 * vc/vc-hg.el (vc-hg-print-log):
2819 * vc/vc-mtn.el (vc-mtn-print-log):
2820 * vc/vc-rcs.el (vc-rcs-print-log):
2821 * vc/vc-sccs.el (vc-sccs-print-log):
2822 * vc/vc-svn.el (vc-svn-print-log):
2823 * vc/vc.el (vc-print-log-internal): Doc fixes.
2824
2825 2013-04-23 Glenn Morris <rgm@gnu.org>
2826
2827 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
2828 Remove venerable code attempting to avoid substitute-command-keys.
2829
2830 2013-04-23 Tassilo Horn <tsdh@gnu.org>
2831
2832 * textmodes/reftex-vars.el (reftex-label-regexps):
2833 Call `reftex-compile-variables' after changes to this variable.
2834
2835 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
2836
2837 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
2838 Use lexical-binding.
2839 (jit-lock-force-redisplay): Use markers, check buffer's continued
2840 existence and beware narrowed buffers.
2841 (jit-lock-fontify-now): Adjust call accordingly.
2842
2843 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
2844
2845 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
2846 to avoid misleading the user.
2847
2848 2013-04-22 Leo Liu <sdl.web@gmail.com>
2849
2850 * info-look.el: Prefer latex2e.info. (Bug#14240)
2851
2852 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
2853
2854 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
2855
2856 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
2857 * net/tramp.el (tramp-call-process): ... here.
2858 (tramp-set-completion-function, tramp-parse-putty):
2859 * net/tramp-adb.el (tramp-adb-execute-adb-command):
2860 * net/tramp-gvfs.el (tramp-gvfs-send-command):
2861 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
2862 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
2863 (tramp-call-local-coding-command): Use `tramp-call-process'
2864 instead of `tramp-compat-call-process'.
2865
2866 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
2867 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
2868 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
2869 (tramp-find-inline-compress): Improve traces.
2870 (tramp-maybe-send-script): Check for Perl binary.
2871 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
2872
2873 2013-04-22 Daiki Ueno <ueno@gnu.org>
2874
2875 * epg.el (epg-context-pinentry-mode): New function.
2876 (epg-context-set-pinentry-mode): New function.
2877 (epg--start): Pass --pinentry-mode option to gpg command.
2878
2879 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
2880
2881 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
2882 `comint-dynamic-complete' is obsolete since 24.1, replaced by
2883 `completion-at-point'. (Bug#13774)
2884
2885 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
2886 default key binding for `describe-distribution' has been moved to
2887 `C-h C-o'. (Bug#13970)
2888
2889 2013-04-21 Glenn Morris <rgm@gnu.org>
2890
2891 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
2892 Add doc strings.
2893 (vc-print-log): Clarify interactive prompt.
2894
2895 2013-04-20 Glenn Morris <rgm@gnu.org>
2896
2897 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
2898 No longer include timestamp etc information.
2899
2900 2013-04-20 Roland Winkler <winkler@gnu.org>
2901
2902 * faces.el (read-face-name): Bug fix, return just one face if arg
2903 multiple is nil. (Bug#14209)
2904
2905 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
2906
2907 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
2908 (remove-function): Autoload.
2909
2910 * comint.el (comint-redirect-original-filter-function): Remove.
2911 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
2912 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
2913 (vc-cvs-annotate-command):
2914 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
2915 * progmodes/prolog.el (prolog-consult-compile):
2916 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
2917 Use add/remove-function instead.
2918 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
2919 (gud-tooltip-process-output, gud-tooltip-tips):
2920 Use add/remove-function instead.
2921 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
2922 (scheme-interaction-mode, exit-scheme-interaction-mode):
2923 Use add/remove-function instead.
2924
2925 * vc/vc-dispatcher.el: Use lexical-binding.
2926 (vc--process-sentinel): Rename from vc-process-sentinel.
2927 Change last arg to be the code to run. Don't use vc-previous-sentinel
2928 and vc-sentinel-commands any more.
2929 (vc-exec-after): Allow code to be a function. Use add/remove-function.
2930 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
2931
2932 2013-04-19 Masatake YAMATO <yamato@redhat.com>
2933
2934 * progmodes/sh-script.el (sh-imenu-generic-expression):
2935 Handle function names with a single character. (Bug#14111)
2936
2937 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
2938
2939 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
2940 for subroutines defined in an eval (bug#14182).
2941
2942 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2943
2944 * bookmark.el (bookmark-completing-read): Improve handling of empty
2945 string (bug#14176).
2946
2947 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
2948
2949 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
2950
2951 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
2952
2953 New faster Imenu implementation (bug#14058).
2954 * progmodes/python.el:
2955 (python-imenu-prev-index-position):
2956 (python-imenu-format-item-label-function)
2957 (python-imenu-format-parent-item-label-function)
2958 (python-imenu-format-parent-item-jump-label-function):
2959 New vars.
2960 (python-imenu-format-item-label)
2961 (python-imenu-format-parent-item-label)
2962 (python-imenu-format-parent-item-jump-label)
2963 (python-imenu--put-parent, python-imenu--build-tree)
2964 (python-imenu-create-index, python-imenu-create-flat-index)
2965 (python-util-popn): New functions.
2966 (python-mode): Set imenu-create-index-function to
2967 python-imenu-create-index.
2968
2969 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
2970
2971 * winner.el (winner-active-region): Use region-active-p, activate-mark
2972 and deactivate-mark (bug#14225).
2973
2974 * simple.el (deactivate-mark): Don't inline it.
2975
2976 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
2977
2978 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
2979
2980 2013-04-18 Tassilo Horn <tsdh@gnu.org>
2981
2982 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
2983 file extensions from the archive-mode entry in order to prefer
2984 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
2985
2986 2013-04-18 Leo Liu <sdl.web@gmail.com>
2987
2988 * bindings.el (help-event-list): Add ?\?.
2989
2990 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
2991
2992 * subr.el (with-wrapper-hook): Declare obsolete.
2993 * simple.el (filter-buffer-substring-function): New hook.
2994 (filter-buffer-substring): Use it.
2995 (filter-buffer-substring-functions): Mark obsolete.
2996 * minibuffer.el (completion-in-region-function): New hook.
2997 (completion-in-region): Use it.
2998 (completion-in-region-functions): Mark obsolete.
2999 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
3000 * abbrev.el (abbrev-expand-function): New hook.
3001 (expand-abbrev): Use it.
3002 (abbrev-expand-functions): Mark obsolete.
3003 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
3004 and :filter-return.
3005
3006 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
3007
3008 * progmodes/python.el (python-nav--syntactically): Fix cornercases
3009 and do not care about match data.
3010
3011 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
3012
3013 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
3014 completion tables when completing error conditions and
3015 `declare' arguments.
3016 (lisp-complete-symbol, field-complete): Mark as obsolete.
3017 (check-parens): Unmatched parens are user errors.
3018 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
3019
3020 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
3021
3022 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
3023 command changed buffer (ie. `flyspell-pre-buffer' is not current
3024 buffer), which prevents making decisions based on invalid value of
3025 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
3026 cause an error when `flyspell-pre-point' was nil after switching
3027 buffers.
3028 (flyspell-post-command-hook): No longer needs to change buffers when
3029 checking pre-word. While at it remove unnecessary progn.
3030
3031 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
3032
3033 * textmodes/ispell.el (ispell-add-per-file-word-list):
3034 Fix `flyspell-correct-word-before-point' error when accepting
3035 words and `coment-padding' is an integer by using
3036 `comment-normalize-vars' (Bug #14214).
3037
3038 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
3039
3040 New defun movement commands.
3041 * progmodes/python.el (python-nav--syntactically)
3042 (python-nav--forward-defun, python-nav-backward-defun)
3043 (python-nav-forward-defun): New functions.
3044
3045 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
3046
3047 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
3048 (python-syntax-context): Use named compiler-macro for backwards
3049 compatibility with Emacs 24.x.
3050
3051 2013-04-17 Leo Liu <sdl.web@gmail.com>
3052
3053 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
3054 octave-hide-process-buffer.
3055
3056 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
3057
3058 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
3059 (bug#14216).
3060
3061 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
3062
3063 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
3064 Fix adjustment of offset when receiving incomplete responses from GDB
3065 (bug#14129).
3066
3067 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
3068
3069 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
3070 python-mode-abbrev-table.
3071 (python-skeleton-define): Adjust accordingly.
3072 (python-mode-abbrev-table): New table that inherits from it so that
3073 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
3074
3075 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
3076 (abbrev-symbol): Use it.
3077 (abbrev--before-point): Use it since we already handle inheritance.
3078
3079 2013-04-16 Leo Liu <sdl.web@gmail.com>
3080
3081 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
3082 binding to info-lookup-symbol.
3083
3084 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
3085
3086 * minibuffer.el (completion--twq-all):
3087 * term/ns-win.el (ns-initialize-window-system):
3088 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
3089
3090 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
3091
3092 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
3093 global bindings.
3094
3095 * doc-view.el (doc-view-start-process): Handle url-handler directories.
3096
3097 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
3098
3099 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
3100 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
3101 to nil.
3102 (ruby-end-of-defun): Remove the unused arg, change the docstring
3103 to reflect that this function is only used as the value of
3104 `end-of-defun-function'.
3105 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
3106 to reflect an earlier change that beginning/end-of-defun functions
3107 jump between methods in a class definition, as well as top-level
3108 functions.
3109
3110 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
3111
3112 * minibuffer.el (minibuffer-complete): Don't just scroll
3113 a *Completions* that's been iconified.
3114 (minibuffer-force-complete): Make sure repetitions do cycle when going
3115 through completion-in-region -> minibuffer-complete.
3116
3117 2013-04-15 Alan Mackenzie <acm@muc.de>
3118
3119 Correct the placement of c-cpp-delimiters when there're #s not at
3120 col 0.
3121
3122 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
3123 place a submatch around the #.
3124 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
3125 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
3126 on the #, not BOL.
3127
3128 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
3129
3130 * emacs-lisp/nadvice.el: Properly test names when adding advice.
3131 (advice--member-p): New arg `name'.
3132 (advice--add-function, advice-member-p): Use it (bug#14202).
3133
3134 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
3135
3136 Reformulate java imenu-generic-expression.
3137 The old expression contained ill formed regexps.
3138
3139 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
3140 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
3141 (cc-imenu-java-method-arg-regexp): New defconsts.
3142 (cc-imenu-java-build-type-args-regex): New defun.
3143 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
3144 handling of spaces in the regexp.
3145
3146 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3147
3148 * textmodes/ispell.el (ispell-command-loop): Remove
3149 flyspell highlight of a word when ispell accepts it (bug #14178).
3150
3151 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
3152
3153 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
3154 uses code from the previous `ange-ftp-run-real-handler'.
3155 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
3156 only in case that function exist. This is needed for proper
3157 unloading of Tramp.
3158
3159 2013-04-15 Tassilo Horn <tsdh@gnu.org>
3160
3161 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
3162
3163 * textmodes/reftex.el (reftex-compile-variables): Use it.
3164
3165 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3166
3167 * files.el (normal-mode): Only use default major-mode if no other mode
3168 was specified.
3169
3170 * emacs-lisp/trace.el (trace-values): New function.
3171
3172 * files.el: Allow : in local variables (bug#14089).
3173 (hack-local-variable-regexp): New var.
3174 (hack-local-variables-prop-line, hack-local-variables): Use it.
3175
3176 2013-04-13 Roland Winkler <winkler@gnu.org>
3177
3178 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
3179 data before it gets modified by bibtex-beginning-of-entry.
3180
3181 2013-04-13 Roland Winkler <winkler@gnu.org>
3182
3183 * textmodes/bibtex.el (bibtex-url): Doc fix.
3184
3185 2013-04-13 Roland Winkler <winkler@gnu.org>
3186
3187 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
3188 does not visit a BibTeX file, exclude it from the list of buffers
3189 returned by bibtex-initialize.
3190
3191 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
3192
3193 * window.el (split-window): Remove interactive form, since as a
3194 command this function is a special case of split-window-below.
3195 Correct doc string.
3196
3197 2013-04-12 Roland Winkler <winkler@gnu.org>
3198
3199 * faces.el (read-face-name): Do not override value of arg default.
3200 Allow single faces and strings as default values. Remove those
3201 elements from return value that are not faces.
3202 (describe-face): Simplify.
3203 (face-at-point): New optional args thing and multiple so that this
3204 function can provide the same functionality previously provided by
3205 read-face-name.
3206 (make-face-bold, make-face-unbold, make-face-italic)
3207 (make-face-unitalic, make-face-bold-italic, invert-face)
3208 (modify-face, read-face-and-attribute): Use face-at-point.
3209
3210 * cus-edit.el (customize-face, customize-face-other-window)
3211 * cus-theme.el (custom-theme-add-face)
3212 * face-remap.el (buffer-face-set)
3213 * facemenu.el (facemenu-set-face): Use face-at-point.
3214
3215 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
3216
3217 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
3218
3219 2013-04-10 Tassilo Horn <tsdh@gnu.org>
3220
3221 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
3222 off leading { and trailing } from field values.
3223
3224 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
3225
3226 * emacs-lisp/timer.el (timer--check): New function.
3227 (timer--time, timer-set-function, timer-event-handler): Use it.
3228 (timer-set-idle-time): Simplify.
3229 (timer--activate): CSE.
3230 (timer-event-handler): Give more info in error message.
3231 (internal-timer-start-idle): New function, moved from C.
3232
3233 * mpc.el (mpc-proc): Add `restart' argument.
3234 (mpc-proc-cmd): Use it.
3235 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
3236 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
3237 less often.
3238
3239 2013-04-10 Masatake YAMATO <yamato@redhat.com>
3240
3241 * progmodes/sh-script.el: Implement `sh-mode' own
3242 `add-log-current-defun-function' (bug#14112).
3243 (sh-current-defun-name): New function.
3244 (sh-mode): Use the function.
3245
3246 2013-04-09 Bastien Guerry <bzg@gnu.org>
3247
3248 * simple.el (choose-completion-string): Fix docstring (bug#14163).
3249
3250 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
3251
3252 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
3253
3254 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
3255 timer (bug#14156).
3256
3257 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
3258
3259 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
3260 declaration.
3261
3262 2013-04-07 Leo Liu <sdl.web@gmail.com>
3263
3264 * pcmpl-x.el: New file.
3265
3266 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
3267
3268 Do not set x-display-name until X connection is established.
3269 This is needed to prevent from weird situation described at
3270 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
3271 * frame.el (make-frame): Set x-display-name after call to
3272 window system initialization function, not before.
3273 * term/x-win.el (x-initialize-window-system): Add optional
3274 display argument and use it.
3275 * term/w32-win.el (w32-initialize-window-system):
3276 * term/ns-win.el (ns-initialize-window-system):
3277 * term/pc-win.el (msdos-initialize-window-system):
3278 Add compatible optional display argument.
3279
3280 2013-04-06 Eli Zaretskii <eliz@gnu.org>
3281
3282 * files.el (normal-backup-enable-predicate): On MS-Windows and
3283 MS-DOS compare truenames of temporary-file-directory and of the
3284 file, so that 8+3 aliases (usually found in $TEMP on Windows)
3285 don't fail comparison by compare-strings. Also, compare file
3286 names case-insensitively on MS-Windows and MS-DOS.
3287
3288 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
3289
3290 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
3291 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
3292
3293 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
3294
3295 * whitespace.el (whitespace-color-on, whitespace-color-off):
3296 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
3297
3298 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
3299
3300 * ispell.el (ispell-set-spellchecker-params):
3301 Really set `ispell-args' for all equivs.
3302
3303 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
3304
3305 * ido.el (ido-completions): Use extra elements of ido-decorations
3306 (bug#14143).
3307 (ido-decorations): Update docstring.
3308
3309 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
3310
3311 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
3312 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
3313 nil during initialization, in order not to miss changes since the
3314 file was opened. (Bug#14140)
3315
3316 2013-04-05 Leo Liu <sdl.web@gmail.com>
3317
3318 * kmacro.el (kmacro-call-macro): Fix bug#14135.
3319
3320 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
3321
3322 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
3323
3324 2013-04-04 Glenn Morris <rgm@gnu.org>
3325
3326 * electric.el (electric-pair-inhibit-predicate): Add :version.
3327
3328 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
3329
3330 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
3331 when a package is required several times (bug#14082).
3332
3333 2013-04-04 Roland Winkler <winkler@gnu.org>
3334
3335 * faces.el (read-face-name): Behave as promised by the docstring.
3336 Assume that arg default is a list of faces.
3337 (describe-face): Call read-face-name with list of default faces.
3338
3339 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3340
3341 * bookmark.el: Fix deletion of bookmarks (bug#13972).
3342 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
3343 (bookmark-bmenu-execute-deletions): Only skip first line if it's
3344 the header.
3345 (bookmark-exit-hook-internal): Save even if list is empty.
3346
3347 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
3348
3349 * emacs-lisp/package.el (package-pinned-packages): New var.
3350 (package--add-to-archive-contents): Obey it (bug#14118).
3351
3352 2013-04-03 Alan Mackenzie <acm@muc.de>
3353
3354 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
3355 Also adapt to the new values of element 7 of a parse state.
3356
3357 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
3358 parameter `not-in-delimiter'. Handle being inside comment opener.
3359 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
3360 character in case we're typing a '*' after a '/'.
3361 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
3362 instead by passing the parameter to c-state-pp-to-literal.
3363
3364 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
3365 for elt. 7 of a parse state.
3366
3367 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
3368
3369 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
3370 * international/latin1-disp.el, international/mule-util.el:
3371 * language/cyril-util.el, language/european.el, language/ind-util.el:
3372 * language/lao-util.el, language/thai.el, language/tibet-util.el:
3373 * language/tibetan.el, language/viet-util.el:
3374 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
3375
3376 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
3377
3378 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
3379 (electric-pair-post-self-insert-function): Use it.
3380 (electric-pair-default-inhibit): New function, extracted from
3381 electric-pair-post-self-insert-function.
3382
3383 2013-03-31 Roland Winkler <winkler@gnu.org>
3384
3385 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
3386
3387 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
3388
3389 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
3390
3391 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
3392
3393 Un-indent after "pass" and "return" statements (Bug#13888)
3394 * progmodes/python.el (python-indent-block-enders): New var.
3395 (python-indent-calculate-indentation): Use it.
3396
3397 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
3398
3399 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
3400 defun. Defining it as defalias could introduce too eager
3401 byte-compiler optimization. (Bug#14030)
3402
3403 2013-03-30 Chong Yidong <cyd@gnu.org>
3404
3405 * iswitchb.el (iswitchb-read-buffer): Fix typo.
3406
3407 2013-03-30 Leo Liu <sdl.web@gmail.com>
3408
3409 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
3410 (kmacro-execute-from-register): Pass the keyboard macro to
3411 kmacro-call-macro or repeating won't work correctly.
3412
3413 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
3414
3415 * progmodes/subword.el: Back to using `forward-symbol'.
3416
3417 * subr.el (forward-whitespace, forward-symbol)
3418 (forward-same-syntax): Move from thingatpt.el.
3419
3420 2013-03-29 Leo Liu <sdl.web@gmail.com>
3421
3422 * kmacro.el (kmacro-to-register): New command.
3423 (kmacro-execute-from-register): New function.
3424 (kmacro-keymap): Bind to 'x'. (Bug#14071)
3425
3426 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
3427
3428 * mpc.el: Use defvar-local and setq-local.
3429 (mpc--proc-connect): Connection failures are not bugs.
3430 (mpc-mode-map): `follow-link' only applies to the buffer's content.
3431 (mpc-volume-map): Bind to the up-events.
3432
3433 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
3434
3435 * progmodes/subword.el (superword-mode): Use `forward-sexp'
3436 instead of `forward-symbol'.
3437
3438 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
3439
3440 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
3441 (edebug--recursive-edit): Use it.
3442 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
3443 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
3444
3445 2013-03-28 Leo Liu <sdl.web@gmail.com>
3446
3447 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
3448
3449 2013-03-27 Eli Zaretskii <eliz@gnu.org>
3450
3451 * facemenu.el (list-colors-callback): New defvar.
3452 (list-colors-redisplay): New function.
3453 (list-colors-display): Install list-colors-redisplay as the
3454 revert-buffer-function. (Bug#14063)
3455
3456 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
3457
3458 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
3459 and suffixes don't overlap (bug#14061).
3460
3461 * case-table.el: Use lexical-binding.
3462 (case-table-get-table): New function.
3463 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
3464
3465 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
3466
3467 * progmodes/subword.el: Add `superword-mode' to do word motion
3468 over symbol_words (parallels and leverages `subword-mode' which
3469 does word motion inside MixedCaseWords).
3470
3471 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
3472
3473 * eshell/em-unix.el: Move su and sudo to...
3474 * eshell/em-tramp.el: ...Eshell tramp module.
3475
3476 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3477
3478 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
3479 Change return value to be a sexp. Delay `get-buffer' to after
3480 restoring the desktop (bug#13951).
3481
3482 2013-03-26 Leo Liu <sdl.web@gmail.com>
3483
3484 * register.el: Move semantic tag handling back to
3485 cedet/semantic/senator.el. (Bug#14052)
3486
3487 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3488
3489 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
3490 into the prompt either (bug#13963).
3491
3492 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
3493
3494 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
3495 part of "(error-foo)".
3496
3497 2013-03-24 Juri Linkov <juri@jurta.org>
3498
3499 * replace.el (list-matching-lines-prefix-face): New defcustom.
3500 (occur-1): Pass `list-matching-lines-prefix-face' to the function
3501 `occur-engine' if `face-differs-from-default-p' returns t.
3502 (occur-engine): Add `,' inside backquote construct to evaluate
3503 `prefix-face'. Propertize the prefix with the `prefix-face' face.
3504 Pass `prefix-face' to the functions `occur-context-lines' and
3505 `occur-engine-add-prefix'.
3506 (occur-engine-add-prefix, occur-context-lines): Add optional arg
3507 `prefix-face' and propertize the prefix with `prefix-face'.
3508 (Bug#14017)
3509
3510 2013-03-24 Leo Liu <sdl.web@gmail.com>
3511
3512 * nxml/rng-valid.el (rng-validate-while-idle)
3513 (rng-validate-quick-while-idle): Guard against deleted buffer.
3514 (Bug#13999)
3515
3516 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
3517 is the last entry in kill-buffer-hook.
3518
3519 * files.el (kill-buffer-hook): Doc fix.
3520
3521 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
3522
3523 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
3524 Make it safe-local.
3525
3526 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
3527
3528 2013-03-23 Leo Liu <sdl.web@gmail.com>
3529
3530 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
3531 Remove.
3532
3533 * nxml/rng-valid.el (rng-validate-mode)
3534 (rng-after-change-function, rng-do-some-validation):
3535 * nxml/rng-maint.el (rng-validate-buffer):
3536 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
3537 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
3538 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
3539 (nxml-extend-after-change-region): Use with-silent-modifications.
3540
3541 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
3542 timer-idle-list.
3543
3544 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
3545 (rng-next-error-1, rng-previous-error-1): Do not let-bind
3546 timer-idle-list. (Bug#13999)
3547
3548 2013-03-23 Juri Linkov <juri@jurta.org>
3549
3550 * info.el (info-index-match): New face.
3551 (Info-index, Info-apropos-matches): Add a nested subgroup to the
3552 main pattern and add text properties with the new face to matches
3553 in index entries relative to the beginning of the index entry.
3554 (Bug#14015)
3555
3556 2013-03-21 Eric Ludlam <zappo@gnu.org>
3557
3558 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
3559 Inhibit read only while inserting objects.
3560
3561 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
3562
3563 * progmodes/cfengine.el: Update docs to mention
3564 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
3565 symbol motion. Remove "_" from the word syntax.
3566
3567 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
3568
3569 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
3570 syntax for both `cfengine2-mode' and `cfengine3-mode'.
3571
3572 2013-03-20 Juri Linkov <juri@jurta.org>
3573
3574 * info.el (Info-next-reference-or-link)
3575 (Info-prev-reference-or-link): New functions.
3576 (Info-next-reference, Info-prev-reference): Use them.
3577 (Info-try-follow-nearest-node): Handle footnote navigation.
3578 (Info-fontify-node): Fontify footnotes. (Bug#13989)
3579
3580 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
3581
3582 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
3583 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
3584
3585 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
3586
3587 Suppress unnecessary non-ASCII chatter during build process.
3588 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
3589 (batch-skkdic-convert): Suppress most of the chatter.
3590 It's not needed so much now that machines are faster,
3591 and its non-ASCII component was confusing; see Dmitry Gutov in
3592 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
3593
3594 2013-03-20 Leo Liu <sdl.web@gmail.com>
3595
3596 * ido.el (ido-chop): Fix bug#10994.
3597
3598 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
3599
3600 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
3601 Remove vars.
3602 (whitespace-color-on, whitespace-color-off):
3603 Use `font-lock-fontify-buffer' (Bug#13817).
3604
3605 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
3606
3607 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
3608 remapping in mode-line.
3609 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
3610
3611 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
3612
3613 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
3614 value for `whitespace-line' face (Bug#13875).
3615 (whitespace-font-lock-keywords): Change description.
3616 (whitespace-color-on): Don't save `font-lock-keywords' value, save
3617 the constructed keywords instead.
3618 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
3619
3620 2013-03-19 Leo Liu <sdl.web@gmail.com>
3621
3622 * progmodes/compile.el (compilation-display-error): New command.
3623 (compilation-mode-map, compilation-minor-mode-map): Bind it to
3624 C-o. (Bug#13992)
3625
3626 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
3627
3628 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
3629
3630 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
3631
3632 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
3633
3634 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
3635
3636 * net/tramp-compat.el (tramp-compat-user-error): New defun.
3637
3638 * net/tramp-adb.el (tramp-adb-handle-shell-command):
3639 * net/tramp-gvfs.el (top):
3640 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
3641 (tramp-handle-shell-command): Use it.
3642 (tramp-dissect-file-name): Raise an error when hostname is a
3643 method name, and neither method nor user is specified.
3644
3645 * net/trampver.el: Update release number.
3646
3647 2013-03-18 Leo Liu <sdl.web@gmail.com>
3648
3649 Make sure eldoc can be turned off properly.
3650 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
3651 eldoc-mode.
3652 (eldoc-display-message-p): Revert last change.
3653 (eldoc-display-message-no-interference-p)
3654 (eldoc-print-current-symbol-info): Tweak.
3655
3656 2013-03-18 Tassilo Horn <tsdh@gnu.org>
3657
3658 * doc-view.el (doc-view-new-window-function): Check the new window
3659 overlay's display property instead the char property of the
3660 buffer's first char. Use `with-selected-window' instead of
3661 `save-window-excursion' with `select-window'.
3662 (doc-view-document->bitmap): Check the current doc-view overlay's
3663 display property instead the char property of the buffer's first char.
3664
3665 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
3666
3667 Automate the build of ja-dic.el (Bug#13984).
3668 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
3669 from the input, rather than assume that it's been done for us by the
3670 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
3671 the current date into a ja-dic.el comment, as that complicates
3672 regression testing.
3673
3674 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
3675
3676 * whitespace.el: Fix double evaluation.
3677 (whitespace-space, whitespace-hspace, whitespace-tab)
3678 (whitespace-newline, whitespace-trailing, whitespace-line)
3679 (whitespace-space-before-tab, whitespace-indentation)
3680 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
3681 obsolete defvars.
3682 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
3683 (whitespace-color-on): Use a single font-lock-add-keywords call.
3684 Fix double-evaluation of face variables.
3685
3686 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
3687
3688 * net/tramp-adb.el (tramp-adb-parse-device-names):
3689 Use `start-process' instead of `call-process'. Otherwise, the
3690 function might be blocked under MS Windows. (Bug#13299)
3691
3692 2013-03-17 Leo Liu <sdl.web@gmail.com>
3693
3694 Extend eldoc to display info in the mode-line. (Bug#13978)
3695 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
3696 (eldoc-mode-line-string): New variable.
3697 (eldoc-minibuffer-message): New function.
3698 (eldoc-message-function): New variable.
3699 (eldoc-message): Use it.
3700 (eldoc-display-message-p)
3701 (eldoc-display-message-no-interference-p):
3702 Support eldoc-post-insert-mode.
3703
3704 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
3705 (eval-expression): Run it.
3706
3707 2013-03-17 Roland Winkler <winkler@gnu.org>
3708
3709 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
3710 strings in the list of return values.
3711
3712 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
3713
3714 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
3715 radix before checking for HMS forms.
3716
3717 2013-03-16 Leo Liu <sdl.web@gmail.com>
3718
3719 * progmodes/scheme.el: Add indentation and font-locking for λ.
3720 (Bug#13975)
3721
3722 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
3723
3724 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
3725 token before point (bug#13942).
3726
3727 2013-03-16 Leo Liu <sdl.web@gmail.com>
3728
3729 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
3730
3731 2013-03-16 Eli Zaretskii <eliz@gnu.org>
3732
3733 * startup.el (command-line-normalize-file-name): Fix handling of
3734 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
3735 <xfq.free@gmail.com> in
3736 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
3737
3738 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
3739
3740 Sync with Tramp 2.2.7.
3741
3742 * net/trampver.el: Update release number.
3743
3744 2013-03-14 Tassilo Horn <tsdh@gnu.org>
3745
3746 * doc-view.el Fix bug#13887.
3747 (doc-view-insert-image): Don't modify overlay associated to
3748 non-live windows, and implement horizontal centering of image in
3749 case it's smaller than the window.
3750 (doc-view-new-window-function): Force redisplay of new windows on
3751 doc-view buffers.
3752
3753 2013-03-13 Karl Fogel <kfogel@red-bean.com>
3754
3755 * saveplace.el (save-place-alist-to-file): Don't sort
3756 `save-place-alist', just pretty-print it (bug#13882).
3757
3758 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
3759
3760 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
3761 Check whether `default-file-name-coding-system' is bound.
3762 It isn't in XEmacs.
3763
3764 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
3765
3766 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
3767 backquotes for `obsolete' (bug#13929).
3768
3769 * international/mule.el (find-auto-coding): Include file name in
3770 obsolescence warning (bug#13922).
3771
3772 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
3773
3774 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
3775 for CFEngine 3-specific indentation.
3776 (cfengine3-indent-line): Use it. Fix up category regex.
3777 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
3778
3779 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
3780
3781 * type-break.el (type-break-file-name):
3782 * textmodes/remember.el (remember-data-file):
3783 * strokes.el (strokes-file):
3784 * shadowfile.el (shadow-initialize):
3785 * saveplace.el (save-place-file):
3786 * ps-bdf.el (bdf-cache-file):
3787 * progmodes/idlwave.el (idlwave-config-directory):
3788 * net/quickurl.el (quickurl-url-file):
3789 * international/kkc.el (kkc-init-file-name):
3790 * ido.el (ido-save-directory-list-file):
3791 * emulation/viper.el (viper-custom-file-name):
3792 * emulation/vip.el (vip-startup-file):
3793 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
3794 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
3795
3796 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
3797
3798 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
3799 * language/thai-word.el: Switch to UTF-8.
3800
3801 See ChangeLog.16 for earlier changes.
3802
3803 ;; Local Variables:
3804 ;; coding: utf-8
3805 ;; End:
3806
3807 Copyright (C) 2011-2013 Free Software Foundation, Inc.
3808
3809 This file is part of GNU Emacs.
3810
3811 GNU Emacs is free software: you can redistribute it and/or modify
3812 it under the terms of the GNU General Public License as published by
3813 the Free Software Foundation, either version 3 of the License, or
3814 (at your option) any later version.
3815
3816 GNU Emacs is distributed in the hope that it will be useful,
3817 but WITHOUT ANY WARRANTY; without even the implied warranty of
3818 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3819 GNU General Public License for more details.
3820
3821 You should have received a copy of the GNU General Public License
3822 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.