aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2023-01-15 05:08:49 +0100
committerStefan Kangas2023-01-15 05:08:49 +0100
commit256791edd484e07cfa963cc9c7cb0b8a66d448bb (patch)
treeafdb3abbc844dfcde5e9b3849af847789a2234ff
parent920a7d38e96134289393b7bfcc3a7b88be73925b (diff)
downloademacs-256791edd484e07cfa963cc9c7cb0b8a66d448bb.tar.gz
emacs-256791edd484e07cfa963cc9c7cb0b8a66d448bb.zip
; Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el72
1 files changed, 64 insertions, 8 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index bad13e9bb9f..a463a7da67e 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -1079,10 +1079,11 @@ or a regexp (using some regexp special characters). If it is a word,
1079search for matches for that word as a substring. If it is a list of words, 1079search for matches for that word as a substring. If it is a list of words,
1080search for matches for any two (or more) of those words. 1080search for matches for any two (or more) of those words.
1081 1081
1082Note that by default this command only searches in the file specified by 1082Note that by default this command only searches in the functions predefined
1083`internal-doc-file-name'; i.e., the etc/DOC file. With \\[universal-argument] prefix, 1083at Emacs startup, i.e., the primitives implemented in C or preloaded in the
1084or if `apropos-do-all' is non-nil, it searches all currently defined 1084Emacs dump image.
1085documentation strings. 1085With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, it searches
1086all currently defined documentation strings.
1086 1087
1087Returns list of symbols and documentation found. 1088Returns list of symbols and documentation found.
1088 1089
@@ -2929,10 +2930,18 @@ Major mode for editing C, powered by tree-sitter.
2929(autoload 'c-ts-mode "c-ts-mode" "\ 2930(autoload 'c-ts-mode "c-ts-mode" "\
2930Major mode for editing C, powered by tree-sitter. 2931Major mode for editing C, powered by tree-sitter.
2931 2932
2933This mode is independent from the classic cc-mode.el based
2934`c-mode', so configuration variables of that mode, like
2935`c-basic-offset', don't affect this mode.
2936
2932(fn)" t) 2937(fn)" t)
2933(autoload 'c++-ts-mode "c-ts-mode" "\ 2938(autoload 'c++-ts-mode "c-ts-mode" "\
2934Major mode for editing C++, powered by tree-sitter. 2939Major mode for editing C++, powered by tree-sitter.
2935 2940
2941This mode is independent from the classic cc-mode.el based
2942`c++-mode', so configuration variables of that mode, like
2943`c-basic-offset', don't affect this mode.
2944
2936(fn)" t) 2945(fn)" t)
2937(register-definition-prefixes "c-ts-mode" '("c-ts-mode-")) 2946(register-definition-prefixes "c-ts-mode" '("c-ts-mode-"))
2938 2947
@@ -4114,6 +4123,22 @@ Optional argument LAX (interactively, the prefix argument), if
4114non-nil, means also include partially matching ligatures and 4123non-nil, means also include partially matching ligatures and
4115non-canonical equivalences. 4124non-canonical equivalences.
4116 4125
4126Each line of the display shows the equivalences in two different
4127ways separated by a colon:
4128
4129 - as the literal character or sequence
4130 - using an ASCII-only escape syntax
4131
4132For example, for the letter \\='r\\=', the first line is
4133
4134 r: ?\\N{LATIN SMALL LETTER R}
4135
4136which is for the requested character itself, and a later line has
4137
4138 ṟ: ?\\N{LATIN SMALL LETTER R}?\\N{COMBINING MACRON BELOW}
4139
4140which clearly shows what the constituent characters are.
4141
4117(fn CHAR &optional LAX)" t) 4142(fn CHAR &optional LAX)" t)
4118(register-definition-prefixes "char-fold" '("char-fold-")) 4143(register-definition-prefixes "char-fold" '("char-fold-"))
4119 4144
@@ -22325,7 +22350,7 @@ Coloring:
22325 22350
22326;;; Generated autoloads from org/org.el 22351;;; Generated autoloads from org/org.el
22327 22352
22328(push (purecopy '(org 9 6)) package--builtin-versions) 22353(push (purecopy '(org 9 6 1)) package--builtin-versions)
22329(autoload 'org-babel-do-load-languages "org" "\ 22354(autoload 'org-babel-do-load-languages "org" "\
22330Load the languages defined in `org-babel-load-languages'. 22355Load the languages defined in `org-babel-load-languages'.
22331 22356
@@ -24504,6 +24529,7 @@ Ignores leading comment characters.
24504(autoload 'pp-emacs-lisp-code "pp" "\ 24529(autoload 'pp-emacs-lisp-code "pp" "\
24505Insert SEXP into the current buffer, formatted as Emacs Lisp code. 24530Insert SEXP into the current buffer, formatted as Emacs Lisp code.
24506Use the `pp-max-width' variable to control the desired line length. 24531Use the `pp-max-width' variable to control the desired line length.
24532Note that this could be slow for large SEXPs.
24507 24533
24508(fn SEXP)") 24534(fn SEXP)")
24509(register-definition-prefixes "pp" '("pp-")) 24535(register-definition-prefixes "pp" '("pp-"))
@@ -25090,7 +25116,7 @@ Open profile FILENAME.
25090 25116
25091;;; Generated autoloads from progmodes/project.el 25117;;; Generated autoloads from progmodes/project.el
25092 25118
25093(push (purecopy '(project 0 9 3)) package--builtin-versions) 25119(push (purecopy '(project 0 9 4)) package--builtin-versions)
25094(autoload 'project-current "project" "\ 25120(autoload 'project-current "project" "\
25095Return the project instance in DIRECTORY, defaulting to `default-directory'. 25121Return the project instance in DIRECTORY, defaulting to `default-directory'.
25096 25122
@@ -27313,6 +27339,13 @@ it is disabled.
27313;;; Generated autoloads from progmodes/ruby-mode.el 27339;;; Generated autoloads from progmodes/ruby-mode.el
27314 27340
27315(push (purecopy '(ruby-mode 1 2)) package--builtin-versions) 27341(push (purecopy '(ruby-mode 1 2)) package--builtin-versions)
27342(autoload 'ruby-base-mode "ruby-mode" "\
27343Generic major mode for editing Ruby.
27344
27345This mode is intended to be inherited by concrete major modes.
27346Currently there are `ruby-mode' and `ruby-ts-mode'.
27347
27348(fn)" t)
27316(autoload 'ruby-mode "ruby-mode" "\ 27349(autoload 'ruby-mode "ruby-mode" "\
27317Major mode for editing Ruby code. 27350Major mode for editing Ruby code.
27318 27351
@@ -27322,6 +27355,15 @@ Major mode for editing Ruby code.
27322(register-definition-prefixes "ruby-mode" '("ruby-")) 27355(register-definition-prefixes "ruby-mode" '("ruby-"))
27323 27356
27324 27357
27358;;; Generated autoloads from progmodes/ruby-ts-mode.el
27359
27360(autoload 'ruby-ts-mode "ruby-ts-mode" "\
27361Major mode for editing Ruby, powered by tree-sitter.
27362
27363(fn)" t)
27364(register-definition-prefixes "ruby-ts-mode" '("ruby-ts-"))
27365
27366
27325;;; Generated autoloads from ruler-mode.el 27367;;; Generated autoloads from ruler-mode.el
27326 27368
27327(defvar-local ruler-mode nil "\ 27369(defvar-local ruler-mode nil "\
@@ -32414,7 +32456,6 @@ Mode for displaying and reprioritizing top priority Todo.
32414 32456
32415;;; Generated autoloads from textmodes/toml-ts-mode.el 32457;;; Generated autoloads from textmodes/toml-ts-mode.el
32416 32458
32417(add-to-list 'auto-mode-alist '("\\.toml\\'" . toml-ts-mode))
32418(autoload 'toml-ts-mode "toml-ts-mode" "\ 32459(autoload 'toml-ts-mode "toml-ts-mode" "\
32419Major mode for editing TOML, powered by tree-sitter. 32460Major mode for editing TOML, powered by tree-sitter.
32420 32461
@@ -32802,6 +32843,21 @@ See info node `(transient)Modifying Existing Transients'.
32802 32843
32803;;; Generated autoloads from treesit.el 32844;;; Generated autoloads from treesit.el
32804 32845
32846(autoload 'treesit-install-language-grammar "treesit" "\
32847Build and install the tree-sitter language grammar library for LANG.
32848
32849Interactively, if `treesit-language-source-alist' doesn't already
32850have data for building the grammar for LANG, prompt for its
32851repository URL and the C/C++ compiler to use.
32852
32853This command requires Git, a C compiler and (sometimes) a C++ compiler,
32854and the linker to be installed and on PATH. It also requires that the
32855recipe for LANG exists in `treesit-language-source-alist'.
32856
32857See `exec-path' for the current path where Emacs looks for
32858executable programs, such as the C/C++ compiler and linker.
32859
32860(fn LANG)" t)
32805(register-definition-prefixes "treesit" '("treesit-")) 32861(register-definition-prefixes "treesit" '("treesit-"))
32806 32862
32807 32863
@@ -36777,7 +36833,7 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT.
36777 36833
36778;;; Generated autoloads from progmodes/xref.el 36834;;; Generated autoloads from progmodes/xref.el
36779 36835
36780(push (purecopy '(xref 1 6 0)) package--builtin-versions) 36836(push (purecopy '(xref 1 6 1)) package--builtin-versions)
36781(autoload 'xref-find-backend "xref") 36837(autoload 'xref-find-backend "xref")
36782(define-obsolete-function-alias 'xref-pop-marker-stack #'xref-go-back "29.1") 36838(define-obsolete-function-alias 'xref-pop-marker-stack #'xref-go-back "29.1")
36783(autoload 'xref-go-back "xref" "\ 36839(autoload 'xref-go-back "xref" "\