aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2019-05-01 06:27:17 -0700
committerGlenn Morris2019-05-01 06:27:17 -0700
commit7124fec0b6de00b6372a5a3d28eedbf330718e08 (patch)
treeb1324dc83892055c96534b39f1f22fee38b45ebd
parent7dafbe3ab91e838803a84ab388bca03ff985e312 (diff)
downloademacs-7124fec0b6de00b6372a5a3d28eedbf330718e08.tar.gz
emacs-7124fec0b6de00b6372a5a3d28eedbf330718e08.zip
; Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el128
1 files changed, 72 insertions, 56 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index ccf2cdc87e0..cb378ceaede 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -1799,7 +1799,7 @@ If `global-auto-revert-non-file-buffers' is non-nil, this mode
1799may also revert some non-file buffers, as described in the 1799may also revert some non-file buffers, as described in the
1800documentation of that variable. It ignores buffers with modes 1800documentation of that variable. It ignores buffers with modes
1801matching `global-auto-revert-ignore-modes', and buffers with a 1801matching `global-auto-revert-ignore-modes', and buffers with a
1802non-nil vale of `global-auto-revert-ignore-buffer'. 1802non-nil value of `global-auto-revert-ignore-buffer'.
1803 1803
1804When a buffer is reverted, a message is generated. This can be 1804When a buffer is reverted, a message is generated. This can be
1805suppressed by setting `auto-revert-verbose' to nil. 1805suppressed by setting `auto-revert-verbose' to nil.
@@ -5200,17 +5200,17 @@ If nil, use Emacs default.")
5200 5200
5201(custom-autoload 'compilation-window-height "compile" t) 5201(custom-autoload 'compilation-window-height "compile" t)
5202 5202
5203(defvar compilation-process-setup-function nil "\ 5203(defvar compilation-process-setup-function #'ignore "\
5204Function to call to customize the compilation process. 5204Function to call to customize the compilation process.
5205This function is called immediately before the compilation process is 5205This function is called immediately before the compilation process is
5206started. It can be used to set any variables or functions that are used 5206started. It can be used to set any variables or functions that are used
5207while processing the output of the compilation process.") 5207while processing the output of the compilation process.")
5208 5208
5209(defvar compilation-buffer-name-function nil "\ 5209(defvar compilation-buffer-name-function #'compilation--default-buffer-name "\
5210Function to compute the name of a compilation buffer. 5210Function to compute the name of a compilation buffer.
5211The function receives one argument, the name of the major mode of the 5211The function receives one argument, the name of the major mode of the
5212compilation buffer. It should return a string. 5212compilation buffer. It should return a string.
5213If nil, compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.") 5213By default, it returns `(concat \"*\" (downcase name-of-mode) \"*\")'.")
5214 5214
5215(defvar compilation-finish-functions nil "\ 5215(defvar compilation-finish-functions nil "\
5216Functions to call when a compilation process finishes. 5216Functions to call when a compilation process finishes.
@@ -7632,14 +7632,14 @@ Display character C using printable string S.
7632(autoload 'standard-display-g1 "disp-table" "\ 7632(autoload 'standard-display-g1 "disp-table" "\
7633Display character C as character SC in the g1 character set. 7633Display character C as character SC in the g1 character set.
7634This function assumes that your terminal uses the SO/SI characters; 7634This function assumes that your terminal uses the SO/SI characters;
7635it is meaningless for an X frame. 7635it is meaningless for a graphical frame.
7636 7636
7637\(fn C SC)" nil nil) 7637\(fn C SC)" nil nil)
7638 7638
7639(autoload 'standard-display-graphic "disp-table" "\ 7639(autoload 'standard-display-graphic "disp-table" "\
7640Display character C as character GC in graphics character set. 7640Display character C as character GC in graphics character set.
7641This function assumes VT100-compatible escapes; it is meaningless for an 7641This function assumes VT100-compatible escapes; it is meaningless
7642X frame. 7642for a graphical frame.
7643 7643
7644\(fn C GC)" nil nil) 7644\(fn C GC)" nil nil)
7645 7645
@@ -17538,8 +17538,9 @@ Return a regular expression matching image-file filenames." nil nil)
17538 17538
17539(autoload 'insert-image-file "image-file" "\ 17539(autoload 'insert-image-file "image-file" "\
17540Insert the image file FILE into the current buffer. 17540Insert the image file FILE into the current buffer.
17541Optional arguments VISIT, BEG, END, and REPLACE are interpreted as for 17541Optional arguments VISIT, BEG, END, and REPLACE are interpreted
17542the command `insert-file-contents'. 17542as for the command `insert-file-contents'. Return list of
17543absolute file name and number of characters inserted.
17543 17544
17544\(fn FILE &optional VISIT BEG END REPLACE)" nil nil) 17545\(fn FILE &optional VISIT BEG END REPLACE)" nil nil)
17545 17546
@@ -18691,15 +18692,17 @@ Major mode for editing JavaScript.
18691\(fn)" t nil) 18692\(fn)" t nil)
18692 18693
18693(autoload 'js-jsx-mode "js" "\ 18694(autoload 'js-jsx-mode "js" "\
18694Major mode for editing JSX. 18695Major mode for editing JavaScript+JSX.
18695 18696
18696To customize the indentation for this mode, set the SGML offset 18697Simply makes `js-jsx-syntax' buffer-local and sets it to t.
18697variables (`sgml-basic-offset', `sgml-attribute-offset' et al.)
18698locally, like so:
18699 18698
18700 (defun set-jsx-indentation () 18699`js-mode' may detect and enable support for JSX automatically if
18701 (setq-local sgml-basic-offset js-indent-level)) 18700it appears to be used in a JavaScript file. You could also
18702 (add-hook \\='js-jsx-mode-hook #\\='set-jsx-indentation) 18701customize `js-jsx-regexps' to improve that detection; or, you
18702could set `js-jsx-syntax' to t in your init file, or in a
18703.dir-locals.el file, or using file variables; or, you could call
18704`js-jsx-enable' in `js-mode-hook'. You may be better served by
18705one of the aforementioned options instead of using this mode.
18703 18706
18704\(fn)" t nil) 18707\(fn)" t nil)
18705 (defalias 'javascript-mode 'js-mode) 18708 (defalias 'javascript-mode 'js-mode)
@@ -35307,7 +35310,12 @@ first backend that could register the file is used.
35307\(fn &optional VC-FILESET COMMENT)" t nil) 35310\(fn &optional VC-FILESET COMMENT)" t nil)
35308 35311
35309(autoload 'vc-version-diff "vc" "\ 35312(autoload 'vc-version-diff "vc" "\
35310Report diffs between REV1 and REV2 revisions of the fileset. 35313Report diffs between revisions REV1 and REV2 in the repository history.
35314This compares two revisions of the current fileset.
35315If REV1 is nil, it defaults to the current revision, i.e. revision
35316of the last commit.
35317If REV2 is nil, it defaults to the work tree, i.e. the current
35318state of each file in the fileset.
35311 35319
35312\(fn FILES REV1 REV2)" t nil) 35320\(fn FILES REV1 REV2)" t nil)
35313 35321
@@ -35334,8 +35342,14 @@ The merge base is a common ancestor between REV1 and REV2 revisions.
35334\(fn FILES REV1 REV2)" t nil) 35342\(fn FILES REV1 REV2)" t nil)
35335 35343
35336(autoload 'vc-version-ediff "vc" "\ 35344(autoload 'vc-version-ediff "vc" "\
35337Show differences between revisions of the fileset in the 35345Show differences between REV1 and REV2 of FILES using ediff.
35338repository history using ediff. 35346This compares two revisions of the files in FILES. Currently,
35347only a single file's revisions can be compared, i.e. FILES can
35348specify only one file name.
35349If REV1 is nil, it defaults to the current revision, i.e. revision
35350of the last commit.
35351If REV2 is nil, it defaults to the work tree, i.e. the current
35352state of each file in FILES.
35339 35353
35340\(fn FILES REV1 REV2)" t nil) 35354\(fn FILES REV1 REV2)" t nil)
35341 35355
@@ -38171,43 +38185,45 @@ Zone out, completely." t nil)
38171;;;;;; "international/uni-digit.el" "international/uni-lowercase.el" 38185;;;;;; "international/uni-digit.el" "international/uni-lowercase.el"
38172;;;;;; "international/uni-mirrored.el" "international/uni-name.el" 38186;;;;;; "international/uni-mirrored.el" "international/uni-name.el"
38173;;;;;; "international/uni-numeric.el" "international/uni-old-name.el" 38187;;;;;; "international/uni-numeric.el" "international/uni-old-name.el"
38174;;;;;; "international/uni-titlecase.el" "international/uni-uppercase.el" 38188;;;;;; "international/uni-special-lowercase.el" "international/uni-special-titlecase.el"
38175;;;;;; "isearch.el" "jit-lock.el" "jka-cmpr-hook.el" "language/burmese.el" 38189;;;;;; "international/uni-special-uppercase.el" "international/uni-titlecase.el"
38176;;;;;; "language/cham.el" "language/chinese.el" "language/cyrillic.el" 38190;;;;;; "international/uni-uppercase.el" "isearch.el" "jit-lock.el"
38177;;;;;; "language/czech.el" "language/english.el" "language/ethiopic.el" 38191;;;;;; "jka-cmpr-hook.el" "language/burmese.el" "language/cham.el"
38178;;;;;; "language/european.el" "language/georgian.el" "language/greek.el" 38192;;;;;; "language/chinese.el" "language/cyrillic.el" "language/czech.el"
38179;;;;;; "language/hebrew.el" "language/indian.el" "language/japanese.el" 38193;;;;;; "language/english.el" "language/ethiopic.el" "language/european.el"
38180;;;;;; "language/khmer.el" "language/korean.el" "language/lao.el" 38194;;;;;; "language/georgian.el" "language/greek.el" "language/hebrew.el"
38181;;;;;; "language/misc-lang.el" "language/romanian.el" "language/sinhala.el" 38195;;;;;; "language/indian.el" "language/japanese.el" "language/khmer.el"
38182;;;;;; "language/slovak.el" "language/tai-viet.el" "language/thai.el" 38196;;;;;; "language/korean.el" "language/lao.el" "language/misc-lang.el"
38183;;;;;; "language/tibetan.el" "language/utf-8-lang.el" "language/vietnamese.el" 38197;;;;;; "language/romanian.el" "language/sinhala.el" "language/slovak.el"
38184;;;;;; "ldefs-boot.el" "leim/ja-dic/ja-dic.el" "leim/leim-list.el" 38198;;;;;; "language/tai-viet.el" "language/thai.el" "language/tibetan.el"
38185;;;;;; "leim/quail/4Corner.el" "leim/quail/ARRAY30.el" "leim/quail/CCDOSPY.el" 38199;;;;;; "language/utf-8-lang.el" "language/vietnamese.el" "ldefs-boot.el"
38186;;;;;; "leim/quail/CTLau-b5.el" "leim/quail/CTLau.el" "leim/quail/ECDICT.el" 38200;;;;;; "leim/ja-dic/ja-dic.el" "leim/leim-list.el" "leim/quail/4Corner.el"
38187;;;;;; "leim/quail/ETZY.el" "leim/quail/PY-b5.el" "leim/quail/PY.el" 38201;;;;;; "leim/quail/ARRAY30.el" "leim/quail/CCDOSPY.el" "leim/quail/CTLau-b5.el"
38188;;;;;; "leim/quail/Punct-b5.el" "leim/quail/Punct.el" "leim/quail/QJ-b5.el" 38202;;;;;; "leim/quail/CTLau.el" "leim/quail/ECDICT.el" "leim/quail/ETZY.el"
38189;;;;;; "leim/quail/QJ.el" "leim/quail/SW.el" "leim/quail/TONEPY.el" 38203;;;;;; "leim/quail/PY-b5.el" "leim/quail/PY.el" "leim/quail/Punct-b5.el"
38190;;;;;; "leim/quail/ZIRANMA.el" "leim/quail/ZOZY.el" "leim/quail/arabic.el" 38204;;;;;; "leim/quail/Punct.el" "leim/quail/QJ-b5.el" "leim/quail/QJ.el"
38191;;;;;; "leim/quail/croatian.el" "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el" 38205;;;;;; "leim/quail/SW.el" "leim/quail/TONEPY.el" "leim/quail/ZIRANMA.el"
38192;;;;;; "leim/quail/czech.el" "leim/quail/georgian.el" "leim/quail/greek.el" 38206;;;;;; "leim/quail/ZOZY.el" "leim/quail/arabic.el" "leim/quail/croatian.el"
38193;;;;;; "leim/quail/hanja-jis.el" "leim/quail/hanja.el" "leim/quail/hanja3.el" 38207;;;;;; "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el" "leim/quail/czech.el"
38194;;;;;; "leim/quail/hebrew.el" "leim/quail/ipa-praat.el" "leim/quail/latin-alt.el" 38208;;;;;; "leim/quail/georgian.el" "leim/quail/greek.el" "leim/quail/hanja-jis.el"
38195;;;;;; "leim/quail/latin-ltx.el" "leim/quail/latin-post.el" "leim/quail/latin-pre.el" 38209;;;;;; "leim/quail/hanja.el" "leim/quail/hanja3.el" "leim/quail/hebrew.el"
38196;;;;;; "leim/quail/persian.el" "leim/quail/programmer-dvorak.el" 38210;;;;;; "leim/quail/ipa-praat.el" "leim/quail/latin-alt.el" "leim/quail/latin-ltx.el"
38197;;;;;; "leim/quail/py-punct.el" "leim/quail/pypunct-b5.el" "leim/quail/quick-b5.el" 38211;;;;;; "leim/quail/latin-post.el" "leim/quail/latin-pre.el" "leim/quail/persian.el"
38198;;;;;; "leim/quail/quick-cns.el" "leim/quail/rfc1345.el" "leim/quail/sami.el" 38212;;;;;; "leim/quail/programmer-dvorak.el" "leim/quail/py-punct.el"
38199;;;;;; "leim/quail/sgml-input.el" "leim/quail/slovak.el" "leim/quail/symbol-ksc.el" 38213;;;;;; "leim/quail/pypunct-b5.el" "leim/quail/quick-b5.el" "leim/quail/quick-cns.el"
38200;;;;;; "leim/quail/tamil-dvorak.el" "leim/quail/tsang-b5.el" "leim/quail/tsang-cns.el" 38214;;;;;; "leim/quail/rfc1345.el" "leim/quail/sami.el" "leim/quail/sgml-input.el"
38201;;;;;; "leim/quail/vntelex.el" "leim/quail/vnvni.el" "leim/quail/welsh.el" 38215;;;;;; "leim/quail/slovak.el" "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el"
38202;;;;;; "loadup.el" "mail/blessmail.el" "mail/rmailedit.el" "mail/rmailkwd.el" 38216;;;;;; "leim/quail/tsang-b5.el" "leim/quail/tsang-cns.el" "leim/quail/vntelex.el"
38203;;;;;; "mail/rmailmm.el" "mail/rmailmsc.el" "mail/rmailsort.el" 38217;;;;;; "leim/quail/vnvni.el" "leim/quail/welsh.el" "loadup.el" "mail/blessmail.el"
38204;;;;;; "mail/rmailsum.el" "mail/undigest.el" "menu-bar.el" "mh-e/mh-gnus.el" 38218;;;;;; "mail/rmailedit.el" "mail/rmailkwd.el" "mail/rmailmm.el"
38205;;;;;; "mh-e/mh-loaddefs.el" "minibuffer.el" "mouse.el" "net/tramp-loaddefs.el" 38219;;;;;; "mail/rmailmsc.el" "mail/rmailsort.el" "mail/rmailsum.el"
38206;;;;;; "newcomment.el" "obarray.el" "org/ob-core.el" "org/ob-keys.el" 38220;;;;;; "mail/undigest.el" "menu-bar.el" "mh-e/mh-gnus.el" "mh-e/mh-loaddefs.el"
38207;;;;;; "org/ob-lob.el" "org/ob-matlab.el" "org/ob-tangle.el" "org/ob.el" 38221;;;;;; "minibuffer.el" "mouse.el" "net/tramp-loaddefs.el" "newcomment.el"
38208;;;;;; "org/org-archive.el" "org/org-attach.el" "org/org-bbdb.el" 38222;;;;;; "obarray.el" "org/ob-core.el" "org/ob-keys.el" "org/ob-lob.el"
38209;;;;;; "org/org-clock.el" "org/org-datetree.el" "org/org-element.el" 38223;;;;;; "org/ob-matlab.el" "org/ob-tangle.el" "org/ob.el" "org/org-archive.el"
38210;;;;;; "org/org-feed.el" "org/org-footnote.el" "org/org-id.el" "org/org-indent.el" 38224;;;;;; "org/org-attach.el" "org/org-bbdb.el" "org/org-clock.el"
38225;;;;;; "org/org-datetree.el" "org/org-element.el" "org/org-feed.el"
38226;;;;;; "org/org-footnote.el" "org/org-id.el" "org/org-indent.el"
38211;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-mobile.el" 38227;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-mobile.el"
38212;;;;;; "org/org-plot.el" "org/org-table.el" "org/org-timer.el" "org/ox-ascii.el" 38228;;;;;; "org/org-plot.el" "org/org-table.el" "org/org-timer.el" "org/ox-ascii.el"
38213;;;;;; "org/ox-beamer.el" "org/ox-html.el" "org/ox-icalendar.el" 38229;;;;;; "org/ox-beamer.el" "org/ox-html.el" "org/ox-icalendar.el"