diff options
| author | Stefan Kangas | 2023-01-15 05:08:49 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2023-01-15 05:08:49 +0100 |
| commit | 256791edd484e07cfa963cc9c7cb0b8a66d448bb (patch) | |
| tree | afdb3abbc844dfcde5e9b3849af847789a2234ff | |
| parent | 920a7d38e96134289393b7bfcc3a7b88be73925b (diff) | |
| download | emacs-256791edd484e07cfa963cc9c7cb0b8a66d448bb.tar.gz emacs-256791edd484e07cfa963cc9c7cb0b8a66d448bb.zip | |
; Auto-commit of loaddefs files.
| -rw-r--r-- | lisp/ldefs-boot.el | 72 |
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, | |||
| 1079 | search for matches for that word as a substring. If it is a list of words, | 1079 | search for matches for that word as a substring. If it is a list of words, |
| 1080 | search for matches for any two (or more) of those words. | 1080 | search for matches for any two (or more) of those words. |
| 1081 | 1081 | ||
| 1082 | Note that by default this command only searches in the file specified by | 1082 | Note 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, | 1083 | at Emacs startup, i.e., the primitives implemented in C or preloaded in the |
| 1084 | or if `apropos-do-all' is non-nil, it searches all currently defined | 1084 | Emacs dump image. |
| 1085 | documentation strings. | 1085 | With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, it searches |
| 1086 | all currently defined documentation strings. | ||
| 1086 | 1087 | ||
| 1087 | Returns list of symbols and documentation found. | 1088 | Returns 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" "\ |
| 2930 | Major mode for editing C, powered by tree-sitter. | 2931 | Major mode for editing C, powered by tree-sitter. |
| 2931 | 2932 | ||
| 2933 | This 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" "\ |
| 2934 | Major mode for editing C++, powered by tree-sitter. | 2939 | Major mode for editing C++, powered by tree-sitter. |
| 2935 | 2940 | ||
| 2941 | This 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 | |||
| 4114 | non-nil, means also include partially matching ligatures and | 4123 | non-nil, means also include partially matching ligatures and |
| 4115 | non-canonical equivalences. | 4124 | non-canonical equivalences. |
| 4116 | 4125 | ||
| 4126 | Each line of the display shows the equivalences in two different | ||
| 4127 | ways separated by a colon: | ||
| 4128 | |||
| 4129 | - as the literal character or sequence | ||
| 4130 | - using an ASCII-only escape syntax | ||
| 4131 | |||
| 4132 | For example, for the letter \\='r\\=', the first line is | ||
| 4133 | |||
| 4134 | r: ?\\N{LATIN SMALL LETTER R} | ||
| 4135 | |||
| 4136 | which is for the requested character itself, and a later line has | ||
| 4137 | |||
| 4138 | ṟ: ?\\N{LATIN SMALL LETTER R}?\\N{COMBINING MACRON BELOW} | ||
| 4139 | |||
| 4140 | which 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" "\ |
| 22330 | Load the languages defined in `org-babel-load-languages'. | 22355 | Load 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" "\ |
| 24505 | Insert SEXP into the current buffer, formatted as Emacs Lisp code. | 24530 | Insert SEXP into the current buffer, formatted as Emacs Lisp code. |
| 24506 | Use the `pp-max-width' variable to control the desired line length. | 24531 | Use the `pp-max-width' variable to control the desired line length. |
| 24532 | Note 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" "\ |
| 25095 | Return the project instance in DIRECTORY, defaulting to `default-directory'. | 25121 | Return 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" "\ | ||
| 27343 | Generic major mode for editing Ruby. | ||
| 27344 | |||
| 27345 | This mode is intended to be inherited by concrete major modes. | ||
| 27346 | Currently there are `ruby-mode' and `ruby-ts-mode'. | ||
| 27347 | |||
| 27348 | (fn)" t) | ||
| 27316 | (autoload 'ruby-mode "ruby-mode" "\ | 27349 | (autoload 'ruby-mode "ruby-mode" "\ |
| 27317 | Major mode for editing Ruby code. | 27350 | Major 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" "\ | ||
| 27361 | Major 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" "\ |
| 32419 | Major mode for editing TOML, powered by tree-sitter. | 32460 | Major 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" "\ | ||
| 32847 | Build and install the tree-sitter language grammar library for LANG. | ||
| 32848 | |||
| 32849 | Interactively, if `treesit-language-source-alist' doesn't already | ||
| 32850 | have data for building the grammar for LANG, prompt for its | ||
| 32851 | repository URL and the C/C++ compiler to use. | ||
| 32852 | |||
| 32853 | This command requires Git, a C compiler and (sometimes) a C++ compiler, | ||
| 32854 | and the linker to be installed and on PATH. It also requires that the | ||
| 32855 | recipe for LANG exists in `treesit-language-source-alist'. | ||
| 32856 | |||
| 32857 | See `exec-path' for the current path where Emacs looks for | ||
| 32858 | executable 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" "\ |