; Auto-commit of loaddefs files.

This commit is contained in:
Stefan Kangas 2023-04-01 05:10:47 +02:00
parent 6419d78fa6
commit e2ebf3995d

View file

@ -3779,8 +3779,18 @@ and exists only for compatibility reasons.
;;; Generated autoloads from progmodes/cc-vars.el ;;; Generated autoloads from progmodes/cc-vars.el
(autoload 'c-string-list-p "cc-vars" "\
Return non-nil if VAL is a list of strings.
(fn VAL)")
(put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-basic-offset 'safe-local-variable 'integerp)
(put 'c-backslash-column 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp)
(put 'c-font-lock-extra-types 'safe-local-variable #'c-string-list-p)
(put 'c++-font-lock-extra-types 'safe-local-variable #'c-string-list-p)
(put 'objc-font-lock-extra-types 'safe-local-variable #'c-string-list-p)
(put 'java-font-lock-extra-types 'safe-local-variable #'c-string-list-p)
(put 'idl-font-lock-extra-types 'safe-local-variable #'c-string-list-p)
(put 'pike-font-lock-extra-types 'safe-local-variable #'c-string-list-p)
(put 'c-file-style 'safe-local-variable 'string-or-null-p) (put 'c-file-style 'safe-local-variable 'string-or-null-p)
(register-definition-prefixes "cc-vars" '("awk-mode-hook" "c++-" "c-" "defcustom-c-stylevar" "idl-" "java-" "objc-" "pike-")) (register-definition-prefixes "cc-vars" '("awk-mode-hook" "c++-" "c-" "defcustom-c-stylevar" "idl-" "java-" "objc-" "pike-"))
@ -8228,15 +8238,23 @@ Make a global mode GLOBAL-MODE corresponding to buffer-local minor MODE.
TURN-ON is a function that will be called with no args in every buffer TURN-ON is a function that will be called with no args in every buffer
and that should try to turn MODE on if applicable for that buffer. and that should try to turn MODE on if applicable for that buffer.
Each of KEY VALUE is a pair of CL-style keyword arguments. :predicate Each of KEY VALUE is a pair of CL-style keyword arguments.
specifies which major modes the globalized minor mode should be switched on The :predicate argument specifies in which major modes should the
in. As the minor mode defined by this function is always global, any globalized minor mode be switched on. The value should be t (meaning
:global keyword is ignored. Other keywords have the same meaning as in switch on the minor mode in all major modes), nil (meaning don't
`define-minor-mode', which see. In particular, :group specifies the custom switch on in any major mode), a list of modes (meaning switch on only
group. The most useful keywords are those that are passed on to the in those modes and their descendants), or a list (not MODES...),
`defcustom'. It normally makes no sense to pass the :lighter or :keymap meaning switch on in any major mode except MODES. The value can also
keywords to `define-globalized-minor-mode', since these are usually passed mix all of these forms, see the info node `Defining Minor Modes' for
to the buffer-local version of the minor mode. details.
As the minor mode defined by this function is always global, any
:global keyword is ignored.
Other keywords have the same meaning as in `define-minor-mode',
which see. In particular, :group specifies the custom group.
The most useful keywords are those that are passed on to the `defcustom'.
It normally makes no sense to pass the :lighter or :keymap keywords
to `define-globalized-minor-mode', since these are usually passed to
the buffer-local version of the minor mode.
BODY contains code to execute each time the mode is enabled or disabled. BODY contains code to execute each time the mode is enabled or disabled.
It is executed after toggling the mode, and before running It is executed after toggling the mode, and before running
@ -9210,7 +9228,6 @@ Turn on EDT Emulation." t)
;;; Generated autoloads from progmodes/eglot.el ;;; Generated autoloads from progmodes/eglot.el
(push (purecopy '(eglot 1 12)) package--builtin-versions)
(autoload 'eglot "eglot" "\ (autoload 'eglot "eglot" "\
Start LSP server in support of PROJECT's buffers under MANAGED-MAJOR-MODE. Start LSP server in support of PROJECT's buffers under MANAGED-MAJOR-MODE.
@ -22410,7 +22427,7 @@ Coloring:
;;; Generated autoloads from org/org.el ;;; Generated autoloads from org/org.el
(push (purecopy '(org 9 6 1)) package--builtin-versions) (push (purecopy '(org 9 6 2)) package--builtin-versions)
(autoload 'org-babel-do-load-languages "org" "\ (autoload 'org-babel-do-load-languages "org" "\
Load the languages defined in `org-babel-load-languages'. Load the languages defined in `org-babel-load-languages'.
@ -23504,48 +23521,6 @@ Location of the file used to speed up activation of packages at startup." :type
(autoload 'package-vc-install-selected-packages "package-vc" "\ (autoload 'package-vc-install-selected-packages "package-vc" "\
Ensure packages specified in `package-vc-selected-packages' are installed." t) Ensure packages specified in `package-vc-selected-packages' are installed." t)
(defvar package-vc-selected-packages 'nil "\
List of packages that must be installed.
Each member of the list is of the form (NAME . SPEC), where NAME
is a symbol designating the package and SPEC is one of:
- nil, if any package version can be installed;
- a version string, if that specific revision is to be installed;
- a property list, describing a package specification. Valid
key/value pairs are
`:url' (string)
The URL of the repository used to fetch the package source.
`:branch' (string)
If given, the name of the branch to checkout after cloning the directory.
`:lisp-dir' (string)
The repository-relative name of the directory to use for loading the Lisp
sources. If not given, the value defaults to the root directory
of the repository.
`:main-file' (string)
The main file of the project, relevant to gather package metadata.
If not given, the assumed default is the package name with \".el\"
appended to it.
`:vc-backend' (symbol)
A symbol of the VC backend to use for cloning the package. The
value ought to be a member of `vc-handled-backends'. If omitted,
`vc-clone' will fall back onto the archive default or on
`package-vc-default-backend'.
All other keys are ignored.
This user option differs from `package-selected-packages' in that
it is meant to be specified manually. If you want to install all
the packages in the list, you cal also use
`package-vc-install-selected-packages'.
Note that this option will not override an existing source
package installation or revert the checked out revision.")
(custom-autoload 'package-vc-selected-packages "package-vc" nil)
(autoload 'package-vc-update-all "package-vc" "\ (autoload 'package-vc-update-all "package-vc" "\
Attempt to update all installed VC packages." t) Attempt to update all installed VC packages." t)
(autoload 'package-vc-update "package-vc" "\ (autoload 'package-vc-update "package-vc" "\
@ -33147,7 +33122,12 @@ Major mode for editing TypeScript.
(fn)" t) (fn)" t)
(autoload 'tsx-ts-mode "typescript-ts-mode" "\ (autoload 'tsx-ts-mode "typescript-ts-mode" "\
Major mode for editing TypeScript. Major mode for editing TSX and JSX documents.
This major mode defines two additional JSX-specific faces:
`typescript-ts-jsx-attribute-face' and
`typescript-ts-jsx-attribute-face' that are used for HTML tags
and attributes, respectively.
(fn)" t) (fn)" t)
(register-definition-prefixes "typescript-ts-mode" '("typescript-ts-mode-")) (register-definition-prefixes "typescript-ts-mode" '("typescript-ts-mode-"))
@ -36916,7 +36896,7 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT.
Go back to the previous position in xref history. Go back to the previous position in xref history.
To undo, use \\[xref-go-forward]." t) To undo, use \\[xref-go-forward]." t)
(autoload 'xref-go-forward "xref" "\ (autoload 'xref-go-forward "xref" "\
Got to the point where a previous \\[xref-go-back] was invoked." t) Go to the point where a previous \\[xref-go-back] was invoked." t)
(autoload 'xref-marker-stack-empty-p "xref" "\ (autoload 'xref-marker-stack-empty-p "xref" "\
Whether the xref back-history is empty.") Whether the xref back-history is empty.")
(autoload 'xref-forward-history-empty-p "xref" "\ (autoload 'xref-forward-history-empty-p "xref" "\