aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2023-02-01 05:08:57 +0100
committerStefan Kangas2023-02-01 05:08:57 +0100
commitf724fca732a61536c684d07f21ef34c0f7ca335e (patch)
tree10e8729843d432387825bbf00d07d02cd59b419d
parenta73b046c7d5cb1d0eb2a69f2c96646d71dfbf66e (diff)
downloademacs-f724fca732a61536c684d07f21ef34c0f7ca335e.tar.gz
emacs-f724fca732a61536c684d07f21ef34c0f7ca335e.zip
; Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el76
1 files changed, 59 insertions, 17 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 4d5921582cc..73d47804e5d 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -2919,12 +2919,17 @@ and corresponding effects.
2919(register-definition-prefixes "semantic/bovine/c" '("semantic")) 2919(register-definition-prefixes "semantic/bovine/c" '("semantic"))
2920 2920
2921 2921
2922;;; Generated autoloads from progmodes/c-ts-common.el
2923
2924(register-definition-prefixes "c-ts-common" '("c-ts-"))
2925
2926
2922;;; Generated autoloads from progmodes/c-ts-mode.el 2927;;; Generated autoloads from progmodes/c-ts-mode.el
2923 2928
2924(autoload 'c-ts-base-mode "c-ts-mode" "\ 2929(autoload 'c-ts-base-mode "c-ts-mode" "\
2925Major mode for editing C, powered by tree-sitter. 2930Major mode for editing C, powered by tree-sitter.
2926 2931
2927\\{c-ts-mode-map} 2932\\{c-ts-base-mode-map}
2928 2933
2929(fn)" t) 2934(fn)" t)
2930(autoload 'c-ts-mode "c-ts-mode" "\ 2935(autoload 'c-ts-mode "c-ts-mode" "\
@@ -2932,14 +2937,47 @@ Major mode for editing C, powered by tree-sitter.
2932 2937
2933This mode is independent from the classic cc-mode.el based 2938This mode is independent from the classic cc-mode.el based
2934`c-mode', so configuration variables of that mode, like 2939`c-mode', so configuration variables of that mode, like
2935`c-basic-offset', don't affect this mode. 2940`c-basic-offset', doesn't affect this mode.
2941
2942To use tree-sitter C/C++ modes by default, evaluate
2943
2944 (add-to-list \\='major-mode-remap-alist \\='(c-mode . c-ts-mode))
2945 (add-to-list \\='major-mode-remap-alist \\='(c++-mode . c++-ts-mode))
2946 (add-to-list \\='major-mode-remap-alist
2947 \\='(c-or-c++-mode . c-or-c++-ts-mode))
2948
2949in your configuration.
2936 2950
2937(fn)" t) 2951(fn)" t)
2938(autoload 'c++-ts-mode "c-ts-mode" "\ 2952(autoload 'c++-ts-mode "c-ts-mode" "\
2939Major mode for editing C++, powered by tree-sitter. 2953Major mode for editing C++, powered by tree-sitter.
2940 2954
2955This mode is independent from the classic cc-mode.el based
2956`c++-mode', so configuration variables of that mode, like
2957`c-basic-offset', don't affect this mode.
2958
2959To use tree-sitter C/C++ modes by default, evaluate
2960
2961 (add-to-list \\='major-mode-remap-alist \\='(c-mode . c-ts-mode))
2962 (add-to-list \\='major-mode-remap-alist \\='(c++-mode . c++-ts-mode))
2963 (add-to-list \\='major-mode-remap-alist
2964 \\='(c-or-c++-mode . c-or-c++-ts-mode))
2965
2966in your configuration.
2967
2941(fn)" t) 2968(fn)" t)
2942(register-definition-prefixes "c-ts-mode" '("c-ts-mode-")) 2969(autoload 'c-or-c++-ts-mode "c-ts-mode" "\
2970Analyze buffer and enable either C or C++ mode.
2971
2972Some people and projects use .h extension for C++ header files
2973which is also the one used for C header files. This makes
2974matching on file name insufficient for detecting major mode that
2975should be used.
2976
2977This function attempts to use file contents to determine whether
2978the code is C or C++ and based on that chooses whether to enable
2979`c-ts-mode' or `c++-ts-mode'." t)
2980(register-definition-prefixes "c-ts-mode" '("c-ts-"))
2943 2981
2944 2982
2945;;; Generated autoloads from calendar/cal-bahai.el 2983;;; Generated autoloads from calendar/cal-bahai.el
@@ -4652,7 +4690,6 @@ For use inside Lisp programs, see also `c-macro-expansion'.
4652 4690
4653;;; Generated autoloads from progmodes/cmake-ts-mode.el 4691;;; Generated autoloads from progmodes/cmake-ts-mode.el
4654 4692
4655(add-to-list 'auto-mode-alist '("\\(?:CMakeLists\\.txt\\|\\.cmake\\)\\'" . cmake-ts-mode))
4656(autoload 'cmake-ts-mode "cmake-ts-mode" "\ 4693(autoload 'cmake-ts-mode "cmake-ts-mode" "\
4657Major mode for editing CMake files, powered by tree-sitter. 4694Major mode for editing CMake files, powered by tree-sitter.
4658 4695
@@ -5636,7 +5673,6 @@ with empty strings removed.
5636;;; Generated autoloads from progmodes/csharp-mode.el 5673;;; Generated autoloads from progmodes/csharp-mode.el
5637 5674
5638(add-to-list 'auto-mode-alist '("\\.cs\\'" . csharp-mode)) 5675(add-to-list 'auto-mode-alist '("\\.cs\\'" . csharp-mode))
5639(add-to-list 'auto-mode-alist '("\\.cs\\'" . csharp-mode))
5640(autoload 'csharp-mode "csharp-mode" "\ 5676(autoload 'csharp-mode "csharp-mode" "\
5641Major mode for editing Csharp code. 5677Major mode for editing Csharp code.
5642 5678
@@ -8011,7 +8047,6 @@ it is disabled.
8011 8047
8012;;; Generated autoloads from progmodes/dockerfile-ts-mode.el 8048;;; Generated autoloads from progmodes/dockerfile-ts-mode.el
8013 8049
8014(add-to-list 'auto-mode-alist '("\\(?:Dockerfile\\(?:\\..*\\)?\\|\\.[Dd]ockerfile\\)\\'" . dockerfile-ts-mode))
8015(autoload 'dockerfile-ts-mode "dockerfile-ts-mode" "\ 8050(autoload 'dockerfile-ts-mode "dockerfile-ts-mode" "\
8016Major mode for editing Dockerfiles, powered by tree-sitter. 8051Major mode for editing Dockerfiles, powered by tree-sitter.
8017 8052
@@ -9157,7 +9192,7 @@ Turn on EDT Emulation." t)
9157 9192
9158;;; Generated autoloads from progmodes/eglot.el 9193;;; Generated autoloads from progmodes/eglot.el
9159 9194
9160(push (purecopy '(eglot 1 10)) package--builtin-versions) 9195(push (purecopy '(eglot 1 11)) package--builtin-versions)
9161(autoload 'eglot "eglot" "\ 9196(autoload 'eglot "eglot" "\
9162Start LSP server in support of PROJECT's buffers under MANAGED-MAJOR-MODE. 9197Start LSP server in support of PROJECT's buffers under MANAGED-MAJOR-MODE.
9163 9198
@@ -9195,7 +9230,7 @@ described in `eglot-server-programs', which see.
9195LANGUAGE-ID is the language ID string to send to the server for 9230LANGUAGE-ID is the language ID string to send to the server for
9196MANAGED-MAJOR-MODE, which matters to a minority of servers. 9231MANAGED-MAJOR-MODE, which matters to a minority of servers.
9197 9232
9198INTERACTIVE is t if called interactively. 9233INTERACTIVE is ignored and provided for backward compatibility.
9199 9234
9200(fn MANAGED-MAJOR-MODE PROJECT CLASS CONTACT LANGUAGE-ID &optional INTERACTIVE)" t) 9235(fn MANAGED-MAJOR-MODE PROJECT CLASS CONTACT LANGUAGE-ID &optional INTERACTIVE)" t)
9201(autoload 'eglot-ensure "eglot" "\ 9236(autoload 'eglot-ensure "eglot" "\
@@ -14368,12 +14403,12 @@ Add the window configuration CONF to `gnus-buffer-configuration'.
14368 14403
14369;;; Generated autoloads from progmodes/go-ts-mode.el 14404;;; Generated autoloads from progmodes/go-ts-mode.el
14370 14405
14371(add-to-list 'auto-mode-alist '("\\.go\\'" . go-ts-mode))
14372(autoload 'go-ts-mode "go-ts-mode" "\ 14406(autoload 'go-ts-mode "go-ts-mode" "\
14373Major mode for editing Go, powered by tree-sitter. 14407Major mode for editing Go, powered by tree-sitter.
14374 14408
14409\\{go-ts-mode-map}
14410
14375(fn)" t) 14411(fn)" t)
14376(add-to-list 'auto-mode-alist '("/go\\.mod\\'" . go-mod-ts-mode))
14377(autoload 'go-mod-ts-mode "go-ts-mode" "\ 14412(autoload 'go-mod-ts-mode "go-ts-mode" "\
14378Major mode for editing go.mod files, powered by tree-sitter. 14413Major mode for editing go.mod files, powered by tree-sitter.
14379 14414
@@ -16205,6 +16240,15 @@ values.
16205(register-definition-prefixes "semantic/html" '("semantic-")) 16240(register-definition-prefixes "semantic/html" '("semantic-"))
16206 16241
16207 16242
16243;;; Generated autoloads from textmodes/html-ts-mode.el
16244
16245(autoload 'html-ts-mode "html-ts-mode" "\
16246Major mode for editing Html, powered by tree-sitter.
16247
16248(fn)" t)
16249(register-definition-prefixes "html-ts-mode" '("html-ts-mode-"))
16250
16251
16208;;; Generated autoloads from htmlfontify.el 16252;;; Generated autoloads from htmlfontify.el
16209 16253
16210(push (purecopy '(htmlfontify 0 21)) package--builtin-versions) 16254(push (purecopy '(htmlfontify 0 21)) package--builtin-versions)
@@ -25121,7 +25165,7 @@ Open profile FILENAME.
25121 25165
25122;;; Generated autoloads from progmodes/project.el 25166;;; Generated autoloads from progmodes/project.el
25123 25167
25124(push (purecopy '(project 0 9 4)) package--builtin-versions) 25168(push (purecopy '(project 0 9 6)) package--builtin-versions)
25125(autoload 'project-current "project" "\ 25169(autoload 'project-current "project" "\
25126Return the project instance in DIRECTORY, defaulting to `default-directory'. 25170Return the project instance in DIRECTORY, defaulting to `default-directory'.
25127 25171
@@ -27362,6 +27406,7 @@ Major mode for editing Ruby code.
27362 27406
27363;;; Generated autoloads from progmodes/ruby-ts-mode.el 27407;;; Generated autoloads from progmodes/ruby-ts-mode.el
27364 27408
27409(push (purecopy '(ruby-ts-mode 0 2)) package--builtin-versions)
27365(autoload 'ruby-ts-mode "ruby-ts-mode" "\ 27410(autoload 'ruby-ts-mode "ruby-ts-mode" "\
27366Major mode for editing Ruby, powered by tree-sitter. 27411Major mode for editing Ruby, powered by tree-sitter.
27367 27412
@@ -27397,7 +27442,6 @@ it is disabled.
27397 27442
27398;;; Generated autoloads from progmodes/rust-ts-mode.el 27443;;; Generated autoloads from progmodes/rust-ts-mode.el
27399 27444
27400(add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-ts-mode))
27401(autoload 'rust-ts-mode "rust-ts-mode" "\ 27445(autoload 'rust-ts-mode "rust-ts-mode" "\
27402Major mode for editing Rust, powered by tree-sitter. 27446Major mode for editing Rust, powered by tree-sitter.
27403 27447
@@ -33066,8 +33110,6 @@ FRAC should be the inverse of the fractional value; for example, a value of
33066 33110
33067;;; Generated autoloads from progmodes/typescript-ts-mode.el 33111;;; Generated autoloads from progmodes/typescript-ts-mode.el
33068 33112
33069(add-to-list 'auto-mode-alist '("\\.ts\\'" . typescript-ts-mode))
33070(add-to-list 'auto-mode-alist '("\\.tsx\\'" . tsx-ts-mode))
33071(autoload 'typescript-ts-base-mode "typescript-ts-mode" "\ 33113(autoload 'typescript-ts-base-mode "typescript-ts-mode" "\
33072Major mode for editing TypeScript. 33114Major mode for editing TypeScript.
33073 33115
@@ -33808,7 +33850,7 @@ is \"www.fsf.co.uk\".
33808 33850
33809;;; Generated autoloads from use-package/use-package.el 33851;;; Generated autoloads from use-package/use-package.el
33810 33852
33811(push (purecopy '(use-package 2 4 4)) package--builtin-versions) 33853(push (purecopy '(use-package 2 4 5)) package--builtin-versions)
33812 33854
33813 33855
33814;;; Generated autoloads from use-package/use-package-bind-key.el 33856;;; Generated autoloads from use-package/use-package-bind-key.el
@@ -34415,7 +34457,8 @@ On a distributed version control system, this runs a \"pull\"
34415operation on the current branch, prompting for the precise 34457operation on the current branch, prompting for the precise
34416command if required. Optional prefix ARG non-nil forces a prompt 34458command if required. Optional prefix ARG non-nil forces a prompt
34417for the VCS command to run. If this is successful, a \"push\" 34459for the VCS command to run. If this is successful, a \"push\"
34418operation will then be done. 34460operation will then be done. This is supported only in backends
34461where the pull operation returns a process.
34419 34462
34420On a non-distributed version control system, this signals an error. 34463On a non-distributed version control system, this signals an error.
34421It also signals an error in a Bazaar bound branch. 34464It also signals an error in a Bazaar bound branch.
@@ -37012,7 +37055,6 @@ a new xwidget-webkit session, otherwise use an existing session.
37012 37055
37013;;; Generated autoloads from textmodes/yaml-ts-mode.el 37056;;; Generated autoloads from textmodes/yaml-ts-mode.el
37014 37057
37015(add-to-list 'auto-mode-alist '("\\.ya?ml\\'" . yaml-ts-mode))
37016(autoload 'yaml-ts-mode "yaml-ts-mode" "\ 37058(autoload 'yaml-ts-mode "yaml-ts-mode" "\
37017Major mode for editing YAML, powered by tree-sitter. 37059Major mode for editing YAML, powered by tree-sitter.
37018 37060