1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-05 22:20:24 -08:00

; Auto-commit of loaddefs files.

This commit is contained in:
Stefan Kangas 2023-01-15 05:09:03 +01:00
parent 16579f6ed7
commit db836637b0

View file

@ -1079,10 +1079,11 @@ or a regexp (using some regexp special characters). If it is a word,
search for matches for that word as a substring. If it is a list of words,
search for matches for any two (or more) of those words.
Note that by default this command only searches in the file specified by
`internal-doc-file-name'; i.e., the etc/DOC file. With \\[universal-argument] prefix,
or if `apropos-do-all' is non-nil, it searches all currently defined
documentation strings.
Note that by default this command only searches in the functions predefined
at Emacs startup, i.e., the primitives implemented in C or preloaded in the
Emacs dump image.
With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, it searches
all currently defined documentation strings.
Returns list of symbols and documentation found.
@ -2929,6 +2930,10 @@ Major mode for editing C, powered by tree-sitter.
(autoload 'c-ts-mode "c-ts-mode" "\
Major mode for editing C, powered by tree-sitter.
This mode is independent from the classic cc-mode.el based
`c-mode', so configuration variables of that mode, like
`c-basic-offset', don't affect this mode.
(fn)" t)
(autoload 'c++-ts-mode "c-ts-mode" "\
Major mode for editing C++, powered by tree-sitter.
@ -4114,6 +4119,22 @@ Optional argument LAX (interactively, the prefix argument), if
non-nil, means also include partially matching ligatures and
non-canonical equivalences.
Each line of the display shows the equivalences in two different
ways separated by a colon:
- as the literal character or sequence
- using an ASCII-only escape syntax
For example, for the letter \\='r\\=', the first line is
r: ?\\N{LATIN SMALL LETTER R}
which is for the requested character itself, and a later line has
ṟ: ?\\N{LATIN SMALL LETTER R}?\\N{COMBINING MACRON BELOW}
which clearly shows what the constituent characters are.
(fn CHAR &optional LAX)" t)
(register-definition-prefixes "char-fold" '("char-fold-"))
@ -11261,8 +11282,10 @@ For more information, see Info node `(eww) Top'.
(defalias 'browse-web 'eww)
(autoload 'eww-open-file "eww" "\
Render FILE using EWW.
If NEW-BUFFER is non-nil (interactively, the prefix arg), use a
new buffer instead of reusing the default EWW buffer.
(fn FILE)" t)
(fn FILE &optional NEW-BUFFER)" t)
(autoload 'eww-search-words "eww" "\
Search the web for the text in the region.
If region is active (and not whitespace), search the web for
@ -22327,7 +22350,7 @@ Coloring:
;;; Generated autoloads from org/org.el
(push (purecopy '(org 9 6)) package--builtin-versions)
(push (purecopy '(org 9 6 1)) package--builtin-versions)
(autoload 'org-babel-do-load-languages "org" "\
Load the languages defined in `org-babel-load-languages'.
@ -24511,6 +24534,7 @@ Ignores leading comment characters.
(autoload 'pp-emacs-lisp-code "pp" "\
Insert SEXP into the current buffer, formatted as Emacs Lisp code.
Use the `pp-max-width' variable to control the desired line length.
Note that this could be slow for large SEXPs.
(fn SEXP)")
(register-definition-prefixes "pp" '("pp-"))
@ -25097,7 +25121,7 @@ Open profile FILENAME.
;;; Generated autoloads from progmodes/project.el
(push (purecopy '(project 0 9 3)) package--builtin-versions)
(push (purecopy '(project 0 9 4)) package--builtin-versions)
(autoload 'project-current "project" "\
Return the project instance in DIRECTORY, defaulting to `default-directory'.
@ -27320,6 +27344,13 @@ it is disabled.
;;; Generated autoloads from progmodes/ruby-mode.el
(push (purecopy '(ruby-mode 1 2)) package--builtin-versions)
(autoload 'ruby-base-mode "ruby-mode" "\
Generic major mode for editing Ruby.
This mode is intended to be inherited by concrete major modes.
Currently there are `ruby-mode' and `ruby-ts-mode'.
(fn)" t)
(autoload 'ruby-mode "ruby-mode" "\
Major mode for editing Ruby code.
@ -27328,6 +27359,15 @@ Major mode for editing Ruby code.
(dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode)))
(register-definition-prefixes "ruby-mode" '("ruby-"))
;;; Generated autoloads from progmodes/ruby-ts-mode.el
(autoload 'ruby-ts-mode "ruby-ts-mode" "\
Major mode for editing Ruby, powered by tree-sitter.
(fn)" t)
(register-definition-prefixes "ruby-ts-mode" '("ruby-ts-"))
;;; Generated autoloads from ruler-mode.el
@ -30223,7 +30263,7 @@ Return the width of STRING in pixels.
(autoload 'string-glyph-split "subr-x" "\
Split STRING into a list of strings representing separate glyphs.
This takes into account combining characters and grapheme clusters:
if compositions are enbaled, each sequence of characters composed
if compositions are enabled, each sequence of characters composed
on display into a single grapheme cluster is treated as a single
indivisible unit.
@ -32409,7 +32449,6 @@ Mode for displaying and reprioritizing top priority Todo.
;;; Generated autoloads from textmodes/toml-ts-mode.el
(add-to-list 'auto-mode-alist '("\\.toml\\'" . toml-ts-mode))
(autoload 'toml-ts-mode "toml-ts-mode" "\
Major mode for editing TOML, powered by tree-sitter.
@ -32601,7 +32640,7 @@ It must be supported by libarchive(3).")
List of suffixes which indicate a compressed file.
It must be supported by libarchive(3).")
(defmacro tramp-archive-autoload-file-name-regexp nil "\
Regular expression matching archive file names." (if (<= emacs-major-version 26) '(concat "\\`" "\\(" ".+" "\\." (regexp-opt tramp-archive-suffixes) "\\(?:" "\\." (regexp-opt tramp-archive-compression-suffixes) "\\)*" "\\)" "\\(" "/" ".*" "\\)" "\\'") `(rx bos (group (+ nonl) "." (| ,@tramp-archive-suffixes) (32 "." (| ,@tramp-archive-compression-suffixes))) (group "/" (* nonl)) eos)))
Regular expression matching archive file names." `(rx bos (group (+ nonl) "." (| ,@tramp-archive-suffixes) (32 "." (| ,@tramp-archive-compression-suffixes))) (group "/" (* nonl)) eos))
(defun tramp-archive-autoload-file-name-handler (operation &rest args) "\
Load Tramp archive file name handler, and perform OPERATION." (defvar tramp-archive-autoload) (let ((default-directory temporary-file-directory) (tramp-archive-autoload tramp-archive-enabled)) (apply #'tramp-autoload-file-name-handler operation args)))
(defun tramp-register-archive-autoload-file-name-handler nil "\
@ -32623,7 +32662,6 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar
;;; Generated autoloads from net/tramp-compat.el
(defalias 'tramp-compat-rx #'rx)
(register-definition-prefixes "tramp-compat" '("tramp-"))
@ -32689,7 +32727,7 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar
;;; Generated autoloads from net/trampver.el
(push (purecopy '(tramp 2 6 0 -1)) package--builtin-versions)
(push (purecopy '(tramp 2 7 0 -1)) package--builtin-versions)
(register-definition-prefixes "trampver" '("tramp-"))
@ -32797,6 +32835,21 @@ See info node `(transient)Modifying Existing Transients'.
;;; Generated autoloads from treesit.el
(autoload 'treesit-install-language-grammar "treesit" "\
Build and install the tree-sitter language grammar library for LANG.
Interactively, if `treesit-language-source-alist' doesn't already
have data for building the grammar for LANG, prompt for its
repository URL and the C/C++ compiler to use.
This command requires Git, a C compiler and (sometimes) a C++ compiler,
and the linker to be installed and on PATH. It also requires that the
recipe for LANG exists in `treesit-language-source-alist'.
See `exec-path' for the current path where Emacs looks for
executable programs, such as the C/C++ compiler and linker.
(fn LANG)" t)
(register-definition-prefixes "treesit" '("treesit-"))
@ -36791,7 +36844,7 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT.
;;; Generated autoloads from progmodes/xref.el
(push (purecopy '(xref 1 6 0)) package--builtin-versions)
(push (purecopy '(xref 1 6 1)) package--builtin-versions)
(autoload 'xref-find-backend "xref")
(define-obsolete-function-alias 'xref-pop-marker-stack #'xref-go-back "29.1")
(autoload 'xref-go-back "xref" "\