; Auto-commit of loaddefs files.

This commit is contained in:
Stefan Kangas 2023-01-01 05:08:26 +01:00
parent 72a81e2022
commit f0e9775b18

View file

@ -2934,7 +2934,7 @@ Major mode for editing C, powered by tree-sitter.
Major mode for editing C++, powered by tree-sitter. Major mode for editing C++, powered by tree-sitter.
(fn)" t) (fn)" t)
(register-definition-prefixes "c-ts-mode" '("c++-ts-mode--syntax-table" "c-ts-mode-")) (register-definition-prefixes "c-ts-mode" '("c-ts-mode-"))
;;; Generated autoloads from calendar/cal-bahai.el ;;; Generated autoloads from calendar/cal-bahai.el
@ -8671,9 +8671,9 @@ it is disabled.
(defvar edebug-all-defs nil "\ (defvar edebug-all-defs nil "\
If non-nil, evaluating defining forms instruments for Edebug. If non-nil, evaluating defining forms instruments for Edebug.
This applies to `eval-defun', `eval-region', `eval-buffer', and This applies to `eval-defun', `eval-region' and `eval-buffer'.
`eval-current-buffer'. `eval-region' is also called by `eval-region' is also called by `eval-last-sexp', and
`eval-last-sexp', and `eval-print-last-sexp'. `eval-print-last-sexp'.
You can use the command `edebug-all-defs' to toggle the value of this You can use the command `edebug-all-defs' to toggle the value of this
variable. You may wish to make it local to each buffer with variable. You may wish to make it local to each buffer with
@ -9134,7 +9134,7 @@ Turn on EDT Emulation." t)
;;; Generated autoloads from progmodes/eglot.el ;;; Generated autoloads from progmodes/eglot.el
(push (purecopy '(eglot 1 9)) package--builtin-versions) (push (purecopy '(eglot 1 10)) 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.
@ -9392,10 +9392,11 @@ it is disabled.
(autoload 'elide-head "elide-head" "\ (autoload 'elide-head "elide-head" "\
Hide header material in buffer according to `elide-head-headers-to-hide'. Hide header material in buffer according to `elide-head-headers-to-hide'.
The header is made invisible with an overlay. With a prefix arg, show The header is made invisible with an overlay. With a prefix
an elided material again. argument ARG, show an elided material again.
This is suitable as an entry on `find-file-hook' or appropriate mode hooks. This is suitable as an entry on `find-file-hook' or appropriate
mode hooks.
(fn &optional ARG)" t) (fn &optional ARG)" t)
(make-obsolete 'elide-head 'elide-head-mode "29.1") (make-obsolete 'elide-head 'elide-head-mode "29.1")
@ -10116,9 +10117,7 @@ then the server and full-name will be set to those values,
whereas `erc-compute-port' and `erc-compute-nick' will be invoked whereas `erc-compute-port' and `erc-compute-nick' will be invoked
for the values of the other parameters. for the values of the other parameters.
When present, ID should be an opaque object used to identify the See `erc-tls' for the meaning of ID.
connection unequivocally. This is rarely needed and not available
interactively.
(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) ID)" t) (fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) ID)" t)
(defalias 'erc-select #'erc) (defalias 'erc-select #'erc)
@ -10133,6 +10132,7 @@ Non-interactively, it takes the keyword arguments
(server (erc-compute-server)) (server (erc-compute-server))
(port (erc-compute-port)) (port (erc-compute-port))
(nick (erc-compute-nick)) (nick (erc-compute-nick))
(user (erc-compute-user))
password password
(full-name (erc-compute-full-name)) (full-name (erc-compute-full-name))
client-certificate client-certificate
@ -10161,11 +10161,11 @@ Example usage:
\\='(\"/home/bandali/my-cert.key\" \\='(\"/home/bandali/my-cert.key\"
\"/home/bandali/my-cert.crt\")) \"/home/bandali/my-cert.crt\"))
When present, ID should be an opaque object for identifying the When present, ID should be a symbol or a string to use for naming
connection unequivocally. (In most cases, this would be a string or a the server buffer and identifying the connection unequivocally.
symbol composed of letters from the Latin alphabet.) This option is See info node `(erc) Network Identifier' for details. Like USER
generally unneeded, however. See info node `(erc) Connecting' for use and CLIENT-CERTIFICATE, this parameter cannot be specified
cases. Not available interactively. interactively.
(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port \\='ircs-u)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) CLIENT-CERTIFICATE ID)" t) (fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port \\='ircs-u)) (NICK (erc-compute-nick)) (USER (erc-compute-user)) PASSWORD (FULL-NAME (erc-compute-full-name)) CLIENT-CERTIFICATE ID)" t)
(autoload 'erc-handle-irc-url "erc" "\ (autoload 'erc-handle-irc-url "erc" "\
@ -14340,6 +14340,21 @@ Add the window configuration CONF to `gnus-buffer-configuration'.
(register-definition-prefixes "gnutls" '("gnutls-" "open-gnutls-stream")) (register-definition-prefixes "gnutls" '("gnutls-" "open-gnutls-stream"))
;;; Generated autoloads from progmodes/go-ts-mode.el
(add-to-list 'auto-mode-alist '("\\.go\\'" . go-ts-mode))
(autoload 'go-ts-mode "go-ts-mode" "\
Major mode for editing Go, powered by tree-sitter.
(fn)" t)
(add-to-list 'auto-mode-alist '("/go\\.mod\\'" . go-mod-ts-mode))
(autoload 'go-mod-ts-mode "go-ts-mode" "\
Major mode for editing go.mod files, powered by tree-sitter.
(fn)" t)
(register-definition-prefixes "go-ts-mode" '("go-"))
;;; Generated autoloads from play/gomoku.el ;;; Generated autoloads from play/gomoku.el
@ -18622,7 +18637,7 @@ Major mode for editing JSON, powered by tree-sitter.
;;; Generated autoloads from jsonrpc.el ;;; Generated autoloads from jsonrpc.el
(push (purecopy '(jsonrpc 1 0 15)) package--builtin-versions) (push (purecopy '(jsonrpc 1 0 16)) package--builtin-versions)
(register-definition-prefixes "jsonrpc" '("jsonrpc-")) (register-definition-prefixes "jsonrpc" '("jsonrpc-"))
@ -23478,7 +23493,7 @@ uses `package-vc-heuristic-alist' to guess the backend.
Note that by default, a VC package will be prioritized over a Note that by default, a VC package will be prioritized over a
regular package, but it will not remove a VC package. regular package, but it will not remove a VC package.
(fn PACKAGE &optional NAME REV BACKEND)" t) (fn PACKAGE &optional REV BACKEND)" t)
(autoload 'package-vc-checkout "package-vc" "\ (autoload 'package-vc-checkout "package-vc" "\
Clone the sources for PKG-DESC into DIRECTORY and visit that directory. Clone the sources for PKG-DESC into DIRECTORY and visit that directory.
Unlike `package-vc-install', this does not yet set up the package Unlike `package-vc-install', this does not yet set up the package
@ -27332,6 +27347,16 @@ it is disabled.
(fn &optional ARG)" t) (fn &optional ARG)" t)
(register-definition-prefixes "ruler-mode" '("ruler-")) (register-definition-prefixes "ruler-mode" '("ruler-"))
;;; Generated autoloads from progmodes/rust-ts-mode.el
(add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-ts-mode))
(autoload 'rust-ts-mode "rust-ts-mode" "\
Major mode for editing Rust, powered by tree-sitter.
(fn)" t)
(register-definition-prefixes "rust-ts-mode" '("rust-ts-mode-"))
;;; Generated autoloads from emacs-lisp/rx.el ;;; Generated autoloads from emacs-lisp/rx.el
@ -29558,7 +29583,8 @@ is specified in the connection settings.
Run PRODUCT interpreter as an inferior process. Run PRODUCT interpreter as an inferior process.
If buffer `*SQL*' exists but no process is running, make a new process. If buffer `*SQL*' exists but no process is running, make a new process.
If buffer exists and a process is running, just switch to buffer `*SQL*'. If buffer exists and a process is running, just make sure buffer `*SQL*'
is displayed.
To specify the SQL product, prefix the call with To specify the SQL product, prefix the call with
\\[universal-argument]. To set the buffer name as well, prefix \\[universal-argument]. To set the buffer name as well, prefix
@ -30201,7 +30227,10 @@ Return the width of STRING in pixels.
(fn STRING)") (fn STRING)")
(autoload 'string-glyph-split "subr-x" "\ (autoload 'string-glyph-split "subr-x" "\
Split STRING into a list of strings representing separate glyphs. Split STRING into a list of strings representing separate glyphs.
This takes into account combining characters and grapheme clusters. This takes into account combining characters and grapheme clusters:
if compositions are enabled, each sequence of characters composed
on display into a single grapheme cluster is treated as a single
indivisible unit.
(fn STRING)") (fn STRING)")
(autoload 'add-display-text-property "subr-x" "\ (autoload 'add-display-text-property "subr-x" "\
@ -32665,7 +32694,7 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar
;;; Generated autoloads from net/trampver.el ;;; Generated autoloads from net/trampver.el
(push (purecopy '(tramp 2 6 0 -1)) package--builtin-versions) (push (purecopy '(tramp 2 6 0 29 1)) package--builtin-versions)
(register-definition-prefixes "trampver" '("tramp-")) (register-definition-prefixes "trampver" '("tramp-"))
@ -36913,6 +36942,16 @@ a new xwidget-webkit session, otherwise use an existing session.
(fn BOOKMARK)") (fn BOOKMARK)")
(register-definition-prefixes "xwidget" '("xwidget-")) (register-definition-prefixes "xwidget" '("xwidget-"))
;;; Generated autoloads from textmodes/yaml-ts-mode.el
(add-to-list 'auto-mode-alist '("\\.ya?ml\\'" . yaml-ts-mode))
(autoload 'yaml-ts-mode "yaml-ts-mode" "\
Major mode for editing YAML, powered by tree-sitter.
(fn)" t)
(register-definition-prefixes "yaml-ts-mode" '("yaml-ts-mode--"))
;;; Generated autoloads from yank-media.el ;;; Generated autoloads from yank-media.el