aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorNicolas Petton2016-09-15 23:30:09 +0200
committerNicolas Petton2016-09-15 23:30:09 +0200
commitf0eb70d8935be90f7c03e187c12d9b60e7214cc6 (patch)
tree2a5904095b758c453ebfda6a1e79b88d4544dc6d /lisp
parent8d0ff839a5e3d1fbb25b16ad86bf37ccd2f6b291 (diff)
downloademacs-f0eb70d8935be90f7c03e187c12d9b60e7214cc6.tar.gz
emacs-f0eb70d8935be90f7c03e187c12d9b60e7214cc6.zip
; Update ChangeLog.2 and ldef-boot.el for Emacs 25.1 releaseemacs-25.1
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ldefs-boot.el146
1 files changed, 91 insertions, 55 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 494b7541e7c..73163aaac6a 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -3049,8 +3049,8 @@ See the documentation for `calculator-mode' for more information.
3049 3049
3050;;;*** 3050;;;***
3051 3051
3052;;;### (autoloads nil "calendar" "calendar/calendar.el" (22388 6368 3052;;;### (autoloads nil "calendar" "calendar/calendar.el" (22489 43024
3053;;;;;; 10105 200000)) 3053;;;;;; 125096 768000))
3054;;; Generated autoloads from calendar/calendar.el 3054;;; Generated autoloads from calendar/calendar.el
3055 3055
3056(autoload 'calendar "calendar" "\ 3056(autoload 'calendar "calendar" "\
@@ -9480,8 +9480,8 @@ corresponding to a successful execution.
9480 9480
9481;;;*** 9481;;;***
9482 9482
9483;;;### (autoloads nil "etags" "progmodes/etags.el" (22388 6386 65282 9483;;;### (autoloads nil "etags" "progmodes/etags.el" (22489 43024 128096
9484;;;;;; 759000)) 9484;;;;;; 697000))
9485;;; Generated autoloads from progmodes/etags.el 9485;;; Generated autoloads from progmodes/etags.el
9486 9486
9487(defvar tags-file-name nil "\ 9487(defvar tags-file-name nil "\
@@ -9749,8 +9749,6 @@ Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
9749If you exit (\\[keyboard-quit], RET or q), you can resume the query replace 9749If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
9750with the command \\[tags-loop-continue]. 9750with the command \\[tags-loop-continue].
9751Fourth arg FILE-LIST-FORM non-nil means initialize the replacement loop. 9751Fourth arg FILE-LIST-FORM non-nil means initialize the replacement loop.
9752Fifth and sixth arguments START and END are accepted, for compatibility
9753with `query-replace-regexp', and ignored.
9754 9752
9755If FILE-LIST-FORM is non-nil, it is a form to evaluate to 9753If FILE-LIST-FORM is non-nil, it is a form to evaluate to
9756produce the list of files to search. 9754produce the list of files to search.
@@ -13162,8 +13160,8 @@ it if ARG is omitted or nil.
13162 13160
13163;;;*** 13161;;;***
13164 13162
13165;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22388 6369 428119 13163;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22489 43024 126096
13166;;;;;; 144000)) 13164;;;;;; 745000))
13167;;; Generated autoloads from emacs-lisp/gv.el 13165;;; Generated autoloads from emacs-lisp/gv.el
13168 13166
13169(autoload 'gv-get "gv" "\ 13167(autoload 'gv-get "gv" "\
@@ -13258,7 +13256,7 @@ The return value is the last VAL in the list.
13258Return a reference to PLACE. 13256Return a reference to PLACE.
13259This is like the `&' operator of the C language. 13257This is like the `&' operator of the C language.
13260Note: this only works reliably with lexical binding mode, except for very 13258Note: this only works reliably with lexical binding mode, except for very
13261simple PLACEs such as (function-symbol \\='foo) which will also work in dynamic 13259simple PLACEs such as (symbol-function \\='foo) which will also work in dynamic
13262binding mode. 13260binding mode.
13263 13261
13264\(fn PLACE)" nil t) 13262\(fn PLACE)" nil t)
@@ -23079,24 +23077,50 @@ This enforces rescanning the buffer on next use.
23079 23077
23080;;;*** 23078;;;***
23081 23079
23082;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (22388 23080;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (22489
23083;;;;;; 6369 632121 150000)) 23081;;;;;; 43024 126096 745000))
23084;;; Generated autoloads from emacs-lisp/regexp-opt.el 23082;;; Generated autoloads from emacs-lisp/regexp-opt.el
23085 23083
23086(autoload 'regexp-opt "regexp-opt" "\ 23084(autoload 'regexp-opt "regexp-opt" "\
23087Return a regexp to match a string in the list STRINGS. 23085Return a regexp to match a string in the list STRINGS.
23088Each string should be unique in STRINGS and should not contain any regexps, 23086Each string should be unique in STRINGS and should not contain
23089quoted or not. If optional PAREN is non-nil, ensure that the returned regexp 23087any regexps, quoted or not. Optional PAREN specifies how the
23090is enclosed by at least one regexp grouping construct. 23088returned regexp is surrounded by grouping constructs.
23091The returned regexp is typically more efficient than the equivalent regexp: 23089
23090The optional argument PAREN can be any of the following:
23091
23092a string
23093 the resulting regexp is preceded by PAREN and followed by
23094 \\), e.g. use \"\\\\(?1:\" to produce an explicitly numbered
23095 group.
23096
23097`words'
23098 the resulting regexp is surrounded by \\=\\<\\( and \\)\\>.
23099
23100`symbols'
23101 the resulting regexp is surrounded by \\_<\\( and \\)\\_>.
23102
23103non-nil
23104 the resulting regexp is surrounded by \\( and \\).
23105
23106nil
23107 the resulting regexp is surrounded by \\(?: and \\), if it is
23108 necessary to ensure that a postfix operator appended to it will
23109 apply to the whole expression.
23092 23110
23093 (let ((open (if PAREN \"\\\\(\" \"\")) (close (if PAREN \"\\\\)\" \"\"))) 23111The resulting regexp is equivalent to but usually more efficient
23094 (concat open (mapconcat \\='regexp-quote STRINGS \"\\\\|\") close)) 23112than that of a simplified version:
23095 23113
23096If PAREN is `words', then the resulting regexp is additionally surrounded 23114 (defun simplified-regexp-opt (strings &optional paren)
23097by \\=\\< and \\>. 23115 (let ((parens
23098If PAREN is `symbols', then the resulting regexp is additionally surrounded 23116 (cond ((stringp paren) (cons paren \"\\\\)\"))
23099by \\=\\_< and \\_>. 23117 ((eq paren 'words) '(\"\\\\\\=<\\\\(\" . \"\\\\)\\\\>\"))
23118 ((eq paren 'symbols) '(\"\\\\_<\\\\(\" . \"\\\\)\\\\_>\"))
23119 ((null paren) '(\"\\\\(?:\" . \"\\\\)\"))
23120 (t '(\"\\\\(\" . \"\\\\)\")))))
23121 (concat (car paren)
23122 (mapconcat 'regexp-quote strings \"\\\\|\")
23123 (cdr paren))))
23100 23124
23101\(fn STRINGS &optional PAREN)" nil nil) 23125\(fn STRINGS &optional PAREN)" nil nil)
23102 23126
@@ -24696,8 +24720,8 @@ Like `mail' command, but display mail buffer in another frame.
24696 24720
24697;;;*** 24721;;;***
24698 24722
24699;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22388 6369 666121 24723;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22489 43024 126096
24700;;;;;; 485000)) 24724;;;;;; 745000))
24701;;; Generated autoloads from emacs-lisp/seq.el 24725;;; Generated autoloads from emacs-lisp/seq.el
24702(push (purecopy '(seq 2 3)) package--builtin-versions) 24726(push (purecopy '(seq 2 3)) package--builtin-versions)
24703 24727
@@ -29426,8 +29450,8 @@ if it had been inserted from a file named URL.
29426 29450
29427;;;*** 29451;;;***
29428 29452
29429;;;### (autoloads nil "url-http" "url/url-http.el" (22457 44247 409108 29453;;;### (autoloads nil "url-http" "url/url-http.el" (22489 43024 129096
29430;;;;;; 239000)) 29454;;;;;; 674000))
29431;;; Generated autoloads from url/url-http.el 29455;;; Generated autoloads from url/url-http.el
29432 (autoload 'url-default-expander "url-expand") 29456 (autoload 'url-default-expander "url-expand")
29433 29457
@@ -32513,14 +32537,16 @@ Zone out, completely.
32513;;;;;; "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el" 32537;;;;;; "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el"
32514;;;;;; "cedet/semantic/analyze/debug.el" "cedet/semantic/analyze/fcn.el" 32538;;;;;; "cedet/semantic/analyze/debug.el" "cedet/semantic/analyze/fcn.el"
32515;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el" 32539;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el"
32516;;;;;; "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/debug.el" 32540;;;;;; "cedet/semantic/bovine/c-by.el" "cedet/semantic/bovine/c.el"
32517;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" 32541;;;;;; "cedet/semantic/bovine/debug.el" "cedet/semantic/bovine/el.el"
32518;;;;;; "cedet/semantic/bovine/make.el" "cedet/semantic/bovine/scm.el" 32542;;;;;; "cedet/semantic/bovine/gcc.el" "cedet/semantic/bovine/make-by.el"
32519;;;;;; "cedet/semantic/chart.el" "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" 32543;;;;;; "cedet/semantic/bovine/make.el" "cedet/semantic/bovine/scm-by.el"
32520;;;;;; "cedet/semantic/db-debug.el" "cedet/semantic/db-ebrowse.el" 32544;;;;;; "cedet/semantic/bovine/scm.el" "cedet/semantic/chart.el"
32521;;;;;; "cedet/semantic/db-el.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" 32545;;;;;; "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" "cedet/semantic/db-debug.el"
32522;;;;;; "cedet/semantic/db-global.el" "cedet/semantic/db-javascript.el" 32546;;;;;; "cedet/semantic/db-ebrowse.el" "cedet/semantic/db-el.el"
32523;;;;;; "cedet/semantic/db-mode.el" "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el" 32547;;;;;; "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" "cedet/semantic/db-global.el"
32548;;;;;; "cedet/semantic/db-javascript.el" "cedet/semantic/db-mode.el"
32549;;;;;; "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el"
32524;;;;;; "cedet/semantic/db.el" "cedet/semantic/debug.el" "cedet/semantic/decorate.el" 32550;;;;;; "cedet/semantic/db.el" "cedet/semantic/debug.el" "cedet/semantic/decorate.el"
32525;;;;;; "cedet/semantic/decorate/include.el" "cedet/semantic/decorate/mode.el" 32551;;;;;; "cedet/semantic/decorate/include.el" "cedet/semantic/decorate/mode.el"
32526;;;;;; "cedet/semantic/dep.el" "cedet/semantic/doc.el" "cedet/semantic/ede-grammar.el" 32552;;;;;; "cedet/semantic/dep.el" "cedet/semantic/doc.el" "cedet/semantic/ede-grammar.el"
@@ -32538,20 +32564,22 @@ Zone out, completely.
32538;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" 32564;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el"
32539;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el" 32565;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el"
32540;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" 32566;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el"
32541;;;;;; "cedet/semantic/wisent/python.el" "cedet/semantic/wisent/wisent.el" 32567;;;;;; "cedet/semantic/wisent/javat-wy.el" "cedet/semantic/wisent/js-wy.el"
32542;;;;;; "cedet/srecode/args.el" "cedet/srecode/compile.el" "cedet/srecode/cpp.el" 32568;;;;;; "cedet/semantic/wisent/python-wy.el" "cedet/semantic/wisent/python.el"
32543;;;;;; "cedet/srecode/ctxt.el" "cedet/srecode/dictionary.el" "cedet/srecode/document.el" 32569;;;;;; "cedet/semantic/wisent/wisent.el" "cedet/srecode/args.el"
32570;;;;;; "cedet/srecode/compile.el" "cedet/srecode/cpp.el" "cedet/srecode/ctxt.el"
32571;;;;;; "cedet/srecode/dictionary.el" "cedet/srecode/document.el"
32544;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el" 32572;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el"
32545;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el" 32573;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el"
32546;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el" 32574;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el"
32547;;;;;; "cedet/srecode/map.el" "cedet/srecode/mode.el" "cedet/srecode/semantic.el" 32575;;;;;; "cedet/srecode/map.el" "cedet/srecode/mode.el" "cedet/srecode/semantic.el"
32548;;;;;; "cedet/srecode/srt.el" "cedet/srecode/table.el" "cedet/srecode/template.el" 32576;;;;;; "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" "cedet/srecode/table.el"
32549;;;;;; "cedet/srecode/texi.el" "cus-dep.el" "dframe.el" "dired-aux.el" 32577;;;;;; "cedet/srecode/template.el" "cedet/srecode/texi.el" "cus-dep.el"
32550;;;;;; "dired-x.el" "dom.el" "dos-fns.el" "dos-vars.el" "dos-w32.el" 32578;;;;;; "dframe.el" "dired-aux.el" "dired-x.el" "dom.el" "dos-fns.el"
32551;;;;;; "dynamic-setting.el" "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el" 32579;;;;;; "dos-vars.el" "dos-w32.el" "dynamic-setting.el" "emacs-lisp/avl-tree.el"
32552;;;;;; "emacs-lisp/byte-opt.el" "emacs-lisp/cl-extra.el" "emacs-lisp/cl-macs.el" 32580;;;;;; "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/cl-extra.el"
32553;;;;;; "emacs-lisp/cl-seq.el" "emacs-lisp/cl.el" "emacs-lisp/eieio-base.el" 32581;;;;;; "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" "emacs-lisp/cl.el"
32554;;;;;; "emacs-lisp/eieio-compat.el" "emacs-lisp/eieio-custom.el" 32582;;;;;; "emacs-lisp/eieio-base.el" "emacs-lisp/eieio-compat.el" "emacs-lisp/eieio-custom.el"
32555;;;;;; "emacs-lisp/eieio-datadebug.el" "emacs-lisp/eieio-opt.el" 32583;;;;;; "emacs-lisp/eieio-datadebug.el" "emacs-lisp/eieio-opt.el"
32556;;;;;; "emacs-lisp/eieio-speedbar.el" "emacs-lisp/generator.el" 32584;;;;;; "emacs-lisp/eieio-speedbar.el" "emacs-lisp/generator.el"
32557;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/smie.el" 32585;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/smie.el"
@@ -32591,18 +32619,26 @@ Zone out, completely.
32591;;;;;; "gnus/nnweb.el" "gnus/registry.el" "gnus/rfc1843.el" "gnus/rfc2045.el" 32619;;;;;; "gnus/nnweb.el" "gnus/registry.el" "gnus/rfc1843.el" "gnus/rfc2045.el"
32592;;;;;; "gnus/rfc2047.el" "gnus/rfc2231.el" "gnus/rtree.el" "gnus/sieve-manage.el" 32620;;;;;; "gnus/rfc2047.el" "gnus/rfc2231.el" "gnus/rtree.el" "gnus/sieve-manage.el"
32593;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "hex-util.el" 32621;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "hex-util.el"
32594;;;;;; "hfy-cmap.el" "ibuf-ext.el" "international/charscript.el" 32622;;;;;; "hfy-cmap.el" "ibuf-ext.el" "international/charprop.el" "international/charscript.el"
32595;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el" 32623;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el"
32596;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "kermit.el" 32624;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "international/uni-bidi.el"
32597;;;;;; "language/hanja-util.el" "language/thai-word.el" "ldefs-boot.el" 32625;;;;;; "international/uni-brackets.el" "international/uni-category.el"
32598;;;;;; "leim/quail/arabic.el" "leim/quail/croatian.el" "leim/quail/cyril-jis.el" 32626;;;;;; "international/uni-combining.el" "international/uni-comment.el"
32599;;;;;; "leim/quail/cyrillic.el" "leim/quail/czech.el" "leim/quail/ethiopic.el" 32627;;;;;; "international/uni-decimal.el" "international/uni-decomposition.el"
32600;;;;;; "leim/quail/georgian.el" "leim/quail/greek.el" "leim/quail/hanja-jis.el" 32628;;;;;; "international/uni-digit.el" "international/uni-lowercase.el"
32601;;;;;; "leim/quail/hanja.el" "leim/quail/hanja3.el" "leim/quail/hebrew.el" 32629;;;;;; "international/uni-mirrored.el" "international/uni-name.el"
32602;;;;;; "leim/quail/indian.el" "leim/quail/ipa-praat.el" "leim/quail/ipa.el" 32630;;;;;; "international/uni-numeric.el" "international/uni-old-name.el"
32603;;;;;; "leim/quail/japanese.el" "leim/quail/lao.el" "leim/quail/latin-alt.el" 32631;;;;;; "international/uni-titlecase.el" "international/uni-uppercase.el"
32604;;;;;; "leim/quail/latin-ltx.el" "leim/quail/latin-post.el" "leim/quail/latin-pre.el" 32632;;;;;; "kermit.el" "language/hanja-util.el" "language/thai-word.el"
32605;;;;;; "leim/quail/lrt.el" "leim/quail/persian.el" "leim/quail/programmer-dvorak.el" 32633;;;;;; "ldefs-boot.el" "leim/ja-dic/ja-dic.el" "leim/quail/arabic.el"
32634;;;;;; "leim/quail/croatian.el" "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el"
32635;;;;;; "leim/quail/czech.el" "leim/quail/ethiopic.el" "leim/quail/georgian.el"
32636;;;;;; "leim/quail/greek.el" "leim/quail/hanja-jis.el" "leim/quail/hanja.el"
32637;;;;;; "leim/quail/hanja3.el" "leim/quail/hebrew.el" "leim/quail/indian.el"
32638;;;;;; "leim/quail/ipa-praat.el" "leim/quail/ipa.el" "leim/quail/japanese.el"
32639;;;;;; "leim/quail/lao.el" "leim/quail/latin-alt.el" "leim/quail/latin-ltx.el"
32640;;;;;; "leim/quail/latin-post.el" "leim/quail/latin-pre.el" "leim/quail/lrt.el"
32641;;;;;; "leim/quail/persian.el" "leim/quail/programmer-dvorak.el"
32606;;;;;; "leim/quail/py-punct.el" "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el" 32642;;;;;; "leim/quail/py-punct.el" "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el"
32607;;;;;; "leim/quail/sgml-input.el" "leim/quail/sisheng.el" "leim/quail/slovak.el" 32643;;;;;; "leim/quail/sgml-input.el" "leim/quail/sisheng.el" "leim/quail/slovak.el"
32608;;;;;; "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el" "leim/quail/thai.el" 32644;;;;;; "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el" "leim/quail/thai.el"
@@ -32683,7 +32719,7 @@ Zone out, completely.
32683;;;;;; "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el" 32719;;;;;; "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el"
32684;;;;;; "vc/pcvs-util.el" "vc/vc-dav.el" "vc/vc-filewise.el" "vcursor.el" 32720;;;;;; "vc/pcvs-util.el" "vc/vc-dav.el" "vc/vc-filewise.el" "vcursor.el"
32685;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el" 32721;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el"
32686;;;;;; "x-dnd.el") (22458 6108 204266 576000)) 32722;;;;;; "x-dnd.el") (22491 3984 174622 61000))
32687 32723
32688;;;*** 32724;;;***
32689 32725