aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2025-09-20 06:35:11 -0400
committerEli Zaretskii2025-09-20 06:35:11 -0400
commit5a56c0fb43bf556da981c4dfe1d7be4c256b24fe (patch)
treebc879b99050707c3d4e56a4ce8c58c7fa583f758
parentb6a065c90dcf433f10f2d89b825f0ba501d747b3 (diff)
downloademacs-5a56c0fb43bf556da981c4dfe1d7be4c256b24fe.tar.gz
emacs-5a56c0fb43bf556da981c4dfe1d7be4c256b24fe.zip
; * lisp/ldefs-boot.el: Update.
-rw-r--r--lisp/ldefs-boot.el208
1 files changed, 165 insertions, 43 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index e1f62222e9a..7d2c66b1e9f 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -9720,7 +9720,8 @@ BUFFER is put back into its original major mode.
9720 9720
9721 9721
9722(fn FUN &optional NAME)") 9722(fn FUN &optional NAME)")
9723(register-definition-prefixes "ehelp" '("ehelp-" "electric-")) 9723 (autoload 'ehelp-command "ehelp" "Prefix command for ehelp." t 'keymap)
9724(register-definition-prefixes "ehelp" '("ehelp-map" "electric-"))
9724 9725
9725 9726
9726;;; Generated autoloads from emacs-lisp/eieio.el 9727;;; Generated autoloads from emacs-lisp/eieio.el
@@ -20141,6 +20142,29 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).")
20141(register-definition-prefixes "ls-lisp" '("ls-lisp-")) 20142(register-definition-prefixes "ls-lisp" '("ls-lisp-"))
20142 20143
20143 20144
20145;;; Generated autoloads from progmodes/lua-mode.el
20146
20147(autoload 'lua-mode "lua-mode" "\
20148Major mode for editing Lua code.
20149
20150(fn)" t)
20151(add-to-list 'auto-mode-alist '("\\.lua\\'" . lua-mode))
20152(add-to-list 'interpreter-mode-alist '("lua" . lua-mode))
20153(defalias 'run-lua #'lua-start-process)
20154(autoload 'lua-start-process "lua-mode" "\
20155Start a Lua process named NAME, running PROGRAM.
20156PROGRAM defaults to NAME, which defaults to `lua-default-application'.
20157When called interactively, switch to the process buffer.
20158
20159STARTFILE is the name of a file, whose contents are sent to the process
20160as its initial input.
20161
20162SWITCHES is a list of strings passed as arguments to PROGRAM.
20163
20164(fn &optional NAME PROGRAM STARTFILE &rest SWITCHES)" t)
20165(register-definition-prefixes "lua-mode" '("lua-"))
20166
20167
20144;;; Generated autoloads from progmodes/lua-ts-mode.el 20168;;; Generated autoloads from progmodes/lua-ts-mode.el
20145 20169
20146(autoload 'lua-ts-inferior-lua "lua-ts-mode" "\ 20170(autoload 'lua-ts-inferior-lua "lua-ts-mode" "\
@@ -20151,11 +20175,7 @@ Major mode for editing Lua files, powered by tree-sitter.
20151\\{lua-ts-mode-map} 20175\\{lua-ts-mode-map}
20152 20176
20153(fn)" t) 20177(fn)" t)
20154(autoload 'lua-ts-mode-maybe "lua-ts-mode" "\ 20178(when (treesit-available-p) (defvar treesit-major-mode-remap-alist) (add-to-list 'treesit-major-mode-remap-alist '(lua-mode . lua-ts-mode)))
20155Enable `lua-ts-mode' when its grammar is available.
20156Also propose to install the grammar when `treesit-enabled-modes'
20157is t or contains the mode name.")
20158(when (treesit-available-p) (add-to-list 'auto-mode-alist '("\\.lua\\'" . lua-ts-mode-maybe)) (add-to-list 'interpreter-mode-alist '("\\<lua\\(?:jit\\)?" . lua-ts-mode-maybe)) (defvar treesit-major-mode-remap-alist) (add-to-list 'treesit-major-mode-remap-alist '(lua-mode . lua-ts-mode)))
20159(register-definition-prefixes "lua-ts-mode" '("lua-ts-")) 20179(register-definition-prefixes "lua-ts-mode" '("lua-ts-"))
20160 20180
20161 20181
@@ -26731,6 +26751,7 @@ Major mode for editing Python files, using tree-sitter library.
26731\\{python-ts-mode-map} 26751\\{python-ts-mode-map}
26732 26752
26733(fn)" t) 26753(fn)" t)
26754(when (and (fboundp 'treesit-available-p) (treesit-available-p) (boundp 'treesit-major-mode-remap-alist)) (add-to-list 'treesit-major-mode-remap-alist '(python-mode . python-ts-mode)))
26734(add-to-list 'auto-mode-alist '("/\\(?:Pipfile\\|\\.?flake8\\)\\'" . conf-mode)) 26755(add-to-list 'auto-mode-alist '("/\\(?:Pipfile\\|\\.?flake8\\)\\'" . conf-mode))
26735(register-definition-prefixes "python" '("inferior-python-mode" "python-" "run-python-internal" "subword-mode")) 26756(register-definition-prefixes "python" '("inferior-python-mode" "python-" "run-python-internal" "subword-mode"))
26736 26757
@@ -33575,6 +33596,12 @@ relative only to the time worked today, and not to past time.
33575(register-definition-prefixes "timeclock" '("timeclock-")) 33596(register-definition-prefixes "timeclock" '("timeclock-"))
33576 33597
33577 33598
33599;;; Generated autoloads from emacs-lisp/timeout.el
33600
33601(push '(timeout 2 1) package--builtin-versions)
33602(register-definition-prefixes "timeout" '("timeout-"))
33603
33604
33578;;; Generated autoloads from emacs-lisp/timer-list.el 33605;;; Generated autoloads from emacs-lisp/timer-list.el
33579 33606
33580(autoload 'list-timers "timer-list" "\ 33607(autoload 'list-timers "timer-list" "\
@@ -34127,7 +34154,7 @@ Interactively, with a prefix argument, prompt for a different method." t)
34127 34154
34128;;; Generated autoloads from transient.el 34155;;; Generated autoloads from transient.el
34129 34156
34130(push '(transient 0 9 4) package--builtin-versions) 34157(push '(transient 0 10 0) package--builtin-versions)
34131(autoload 'transient-insert-suffix "transient" "\ 34158(autoload 'transient-insert-suffix "transient" "\
34132Insert a SUFFIX into PREFIX before LOC. 34159Insert a SUFFIX into PREFIX before LOC.
34133PREFIX is a prefix command, a symbol. 34160PREFIX is a prefix command, a symbol.
@@ -34222,9 +34249,15 @@ nil, the grammar is installed to the standard location, the
34222 34249
34223(fn LANG &optional OUT-DIR)" t) 34250(fn LANG &optional OUT-DIR)" t)
34224(defvar treesit-enabled-modes nil "\ 34251(defvar treesit-enabled-modes nil "\
34225Specify what treesit modes to enable by default. 34252Specify which tree-sitter based major modes to enable by default.
34226The value can be either a list of ts-modes to enable, 34253The value can be either a list of ts-modes to enable,
34227or t to enable all ts-modes.") 34254or t to enable all ts-modes. The value nil (the default)
34255means not to enable any tree-sitter based modes.
34256
34257Enabling a tree-stter based mode means that visiting files in the
34258corresponding programming language will automatically turn on that
34259mode, instead of any non-tree-sitter based modes for the same
34260language.")
34228(custom-autoload 'treesit-enabled-modes "treesit" nil) 34261(custom-autoload 'treesit-enabled-modes "treesit" nil)
34229(register-definition-prefixes "treesit" '("treesit-")) 34262(register-definition-prefixes "treesit" '("treesit-"))
34230 34263
@@ -35704,47 +35737,96 @@ The merge base is a common ancestor between REV1 and REV2 revisions.
35704 35737
35705(fn FILES REV1 REV2)" t) 35738(fn FILES REV1 REV2)" t)
35706(autoload 'vc-root-diff-incoming "vc" "\ 35739(autoload 'vc-root-diff-incoming "vc" "\
35707Report diff of all changes that would be pulled from REMOTE-LOCATION. 35740Report diff of all changes that would be pulled from UPSTREAM-LOCATION.
35708When unspecified REMOTE-LOCATION is the place \\[vc-update] would pull from. 35741When unspecified UPSTREAM-LOCATION is the place \\[vc-update] would pull
35709When called interactively with a prefix argument, prompt for REMOTE-LOCATION. 35742from. When called interactively with a prefix argument, prompt for
35710In some version control systems REMOTE-LOCATION can be a remote branch name. 35743UPSTREAM-LOCATION. In some version control systems UPSTREAM-LOCATION
35744can be a remote branch name.
35711 35745
35712See `vc-use-incoming-outgoing-prefixes' regarding giving this command a 35746See `vc-use-incoming-outgoing-prefixes' regarding giving this command a
35713global binding. 35747global binding.
35714 35748
35715(fn &optional REMOTE-LOCATION)" t) 35749(fn &optional UPSTREAM-LOCATION)" t)
35716(autoload 'vc-diff-incoming "vc" "\ 35750(autoload 'vc-diff-incoming "vc" "\
35717Report changes to VC fileset that would be pulled from REMOTE-LOCATION. 35751Report changes to VC fileset that would be pulled from UPSTREAM-LOCATION.
35718When unspecified REMOTE-LOCATION is the place \\[vc-update] would pull from. 35752When unspecified UPSTREAM-LOCATION is the place \\[vc-update] would pull
35719When called interactively with a prefix argument, prompt for REMOTE-LOCATION. 35753from. When called interactively with a prefix argument, prompt for
35720In some version control systems REMOTE-LOCATION can be a remote branch name. 35754UPSTREAM-LOCATION. In some version control systems UPSTREAM-LOCATION
35721When called from Lisp optional argument FILESET overrides the VC fileset. 35755can be a remote branch name.
35756When called from Lisp optional argument FILESET overrides the VC
35757fileset.
35722 35758
35723See `vc-use-incoming-outgoing-prefixes' regarding giving this command a 35759See `vc-use-incoming-outgoing-prefixes' regarding giving this command a
35724global binding. 35760global binding.
35725 35761
35726(fn &optional REMOTE-LOCATION FILESET)" t) 35762(fn &optional UPSTREAM-LOCATION FILESET)" t)
35727(autoload 'vc-root-diff-outgoing "vc" "\ 35763(autoload 'vc-root-diff-outgoing "vc" "\
35728Report diff of all changes that would be pushed to REMOTE-LOCATION. 35764Report diff of all changes that would be pushed to UPSTREAM-LOCATION.
35729When unspecified REMOTE-LOCATION is the place \\[vc-push] would push to. 35765When unspecified UPSTREAM-LOCATION is the place \\[vc-push] would push
35730When called interactively with a prefix argument, prompt for REMOTE-LOCATION. 35766to. When called interactively with a prefix argument, prompt for
35731In some version control systems REMOTE-LOCATION can be a remote branch name. 35767UPSTREAM-LOCATION. In some version control systems UPSTREAM-LOCATION
35768can be a remote branch name.
35769
35770This command is like `vc-root-diff-outgoing-base' except that it does
35771not include uncommitted changes.
35732 35772
35733See `vc-use-incoming-outgoing-prefixes' regarding giving this command a 35773See `vc-use-incoming-outgoing-prefixes' regarding giving this command a
35734global binding. 35774global binding.
35735 35775
35736(fn &optional REMOTE-LOCATION)" t) 35776(fn &optional UPSTREAM-LOCATION)" t)
35737(autoload 'vc-diff-outgoing "vc" "\ 35777(autoload 'vc-diff-outgoing "vc" "\
35738Report changes to VC fileset that would be pushed to REMOTE-LOCATION. 35778Report changes to VC fileset that would be pushed to UPSTREAM-LOCATION.
35739When unspecified REMOTE-LOCATION is the place \\[vc-push] would push to. 35779When unspecified UPSTREAM-LOCATION is the place \\[vc-push] would push
35740When called interactively with a prefix argument, prompt for REMOTE-LOCATION. 35780to. When called interactively with a prefix argument, prompt for
35741In some version control systems REMOTE-LOCATION can be a remote branch name. 35781UPSTREAM-LOCATION. In some version control systems UPSTREAM-LOCATION
35742When called from Lisp optional argument FILESET overrides the VC fileset. 35782can be a remote branch name.
35783When called from Lisp optional argument FILESET overrides the VC
35784fileset.
35785
35786This command is like `vc-diff-outgoing-base' except that it does not
35787include uncommitted changes.
35743 35788
35744See `vc-use-incoming-outgoing-prefixes' regarding giving this command a 35789See `vc-use-incoming-outgoing-prefixes' regarding giving this command a
35745global binding. 35790global binding.
35746 35791
35747(fn &optional REMOTE-LOCATION FILESET)" t) 35792(fn &optional UPSTREAM-LOCATION FILESET)" t)
35793(autoload 'vc-root-diff-outgoing-base "vc" "\
35794Report diff of all changes since the merge base with UPSTREAM-LOCATION.
35795The merge base with UPSTREAM-LOCATION means the common ancestor of the
35796working revision and UPSTREAM-LOCATION.
35797Uncommitted changes are included in the diff.
35798
35799When unspecified UPSTREAM-LOCATION is the place \\[vc-push] would push
35800to. This default meaning for UPSTREAM-LOCATION may change in a future
35801release of Emacs.
35802
35803When called interactively with a prefix argument, prompt for
35804UPSTREAM-LOCATION. In some version control systems, UPSTREAM-LOCATION
35805can be a remote branch name.
35806
35807This command is like `vc-root-diff-outgoing' except that it includes
35808uncommitted changes.
35809
35810(fn &optional UPSTREAM-LOCATION)" t)
35811(autoload 'vc-diff-outgoing-base "vc" "\
35812Report changes to VC fileset since the merge base with UPSTREAM-LOCATION.
35813
35814The merge base with UPSTREAM-LOCATION means the common ancestor of the
35815working revision and UPSTREAM-LOCATION.
35816Uncommitted changes are included in the diff.
35817
35818When unspecified UPSTREAM-LOCATION is the place \\[vc-push] would push
35819to. This default meaning for UPSTREAM-LOCATION may change in a future
35820release of Emacs.
35821
35822When called interactively with a prefix argument, prompt for
35823UPSTREAM-LOCATION. In some version control systems, UPSTREAM-LOCATION
35824can be a remote branch name.
35825
35826This command is like to `vc-fileset-diff-outgoing' except that it
35827includes uncommitted changes.
35828
35829(fn &optional UPSTREAM-LOCATION FILESET)" t)
35748(autoload 'vc-version-ediff "vc" "\ 35830(autoload 'vc-version-ediff "vc" "\
35749Show differences between REV1 and REV2 of FILES using ediff. 35831Show differences between REV1 and REV2 of FILES using ediff.
35750This compares two revisions of the files in FILES. Currently, 35832This compares two revisions of the files in FILES. Currently,
@@ -35892,7 +35974,7 @@ number of revisions to show; the default is `vc-log-show-limit'.
35892When called interactively with a prefix argument, prompt for LIMIT, but 35974When called interactively with a prefix argument, prompt for LIMIT, but
35893if the prefix argument is a number, use it as LIMIT. 35975if the prefix argument is a number, use it as LIMIT.
35894A special case is when the prefix argument is 1: in this case 35976A special case is when the prefix argument is 1: in this case
35895the command prompts for the ID of a revision, and shows that revision 35977the command prompts for the id of a REVISION, and shows that revision
35896with its diffs (if the underlying VCS backend supports that). 35978with its diffs (if the underlying VCS backend supports that).
35897 35979
35898(fn &optional LIMIT REVISION)" t) 35980(fn &optional LIMIT REVISION)" t)
@@ -35902,19 +35984,21 @@ The command prompts for the branch whose change log to show.
35902 35984
35903(fn BRANCH)" t) 35985(fn BRANCH)" t)
35904(autoload 'vc-log-incoming "vc" "\ 35986(autoload 'vc-log-incoming "vc" "\
35905Show log of changes that will be received with pull from REMOTE-LOCATION. 35987Show log of changes that will be received with pull from UPSTREAM-LOCATION.
35906When unspecified REMOTE-LOCATION is the place \\[vc-update] would pull from. 35988When unspecified UPSTREAM-LOCATION is the place \\[vc-update] would pull
35907When called interactively with a prefix argument, prompt for REMOTE-LOCATION. 35989from. When called interactively with a prefix argument, prompt for
35908In some version control systems REMOTE-LOCATION can be a remote branch name. 35990UPSTREAM-LOCATION. In some version control systems UPSTREAM-LOCATION
35991can be a remote branch name.
35909 35992
35910(fn &optional REMOTE-LOCATION)" t) 35993(fn &optional UPSTREAM-LOCATION)" t)
35911(autoload 'vc-log-outgoing "vc" "\ 35994(autoload 'vc-log-outgoing "vc" "\
35912Show log of changes that will be sent with a push operation to REMOTE-LOCATION. 35995Show log of changes that will be sent with a push to UPSTREAM-LOCATION.
35913When unspecified REMOTE-LOCATION is the place \\[vc-push] would push to. 35996When unspecified UPSTREAM-LOCATION is the place \\[vc-push] would push
35914When called interactively with a prefix argument, prompt for REMOTE-LOCATION. 35997to. When called interactively with a prefix argument, prompt for
35915In some version control systems REMOTE-LOCATION can be a remote branch name. 35998UPSTREAM-LOCATION. In some version control systems UPSTREAM-LOCATION
35999can be a remote branch name.
35916 36000
35917(fn &optional REMOTE-LOCATION)" t) 36001(fn &optional UPSTREAM-LOCATION)" t)
35918(autoload 'vc-log-search "vc" "\ 36002(autoload 'vc-log-search "vc" "\
35919Search the VC log of changes for PATTERN and show log of matching changes. 36003Search the VC log of changes for PATTERN and show log of matching changes.
35920 36004
@@ -36095,6 +36179,44 @@ of the other working trees FROM and TO.
36095BACKEND is the VC backend. 36179BACKEND is the VC backend.
36096 36180
36097(fn BACKEND FROM TO)" t) 36181(fn BACKEND FROM TO)" t)
36182(autoload 'vc-apply-to-other-working-tree "vc" "\
36183Apply VC fileset's local changes to working tree under DIRECTORY.
36184Must be called from within an existing VC working tree.
36185When called interactively, prompts for DIRECTORY.
36186With a prefix argument (when called from Lisp, with optional argument
36187MOVE non-nil), don't just copy the changes, but move them, from the
36188current working tree to DIRECTORY.
36189
36190When called from a `diff-mode' buffer, move or copy the changes
36191specified by the contents of that buffer, only.
36192
36193If any changes to be moved or copied can't be applied to DIRECTORY, it
36194is an error, and no changes are applied.
36195If any changes to be moved can't be reverse-applied to this working
36196tree, it is an error, and no changes are moved.
36197
36198(fn DIRECTORY &optional MOVE)" t)
36199(autoload 'vc-apply-root-to-other-working-tree "vc" "\
36200Apply all local changes in this working tree to the tree under DIRECTORY.
36201Must be called from within an existing VC working tree.
36202When called interactively, prompts for DIRECTORY.
36203With a prefix argument (when called from Lisp, with optional argument
36204MOVE non-nil), don't just copy the changes, but move them, from the
36205current working tree to DIRECTORY.
36206
36207With a double prefix argument (\\[universal-argument] \\[universal-argument]; when called from Lisp, with
36208optional argument PREVIEW non-nil), don't actually apply changes to
36209DIRECTORY, but instead show all those changes in a `diff-mode' buffer
36210with `default-directory' set to DIRECTORY.
36211You can then selectively apply changes with `diff-mode' commands like
36212`diff-apply-hunk' and `diff-apply-buffer'.
36213
36214If any changes to be moved or copied can't be applied to DIRECTORY, it
36215is an error, and (except with \\[universal-argument] \\[universal-argument]) no changes are applied.
36216If any changes to be moved can't be reverse-applied to this working
36217tree, it is an error, and no changes are moved.
36218
36219(fn DIRECTORY &optional MOVE PREVIEW)" t)
36098(register-definition-prefixes "vc" '("log-view-vc-prev-" "vc-" "with-vc-properties")) 36220(register-definition-prefixes "vc" '("log-view-vc-prev-" "vc-" "with-vc-properties"))
36099 36221
36100 36222
@@ -39160,9 +39282,9 @@ run a specific program. The program must be a member of
39160(provide 'loaddefs) 39282(provide 'loaddefs)
39161 39283
39162;; Local Variables: 39284;; Local Variables:
39163;; no-byte-compile: t
39164;; version-control: never 39285;; version-control: never
39165;; no-update-autoloads: t 39286;; no-update-autoloads: t
39287;; no-byte-compile: t
39166;; no-native-compile: t 39288;; no-native-compile: t
39167;; coding: utf-8-emacs-unix 39289;; coding: utf-8-emacs-unix
39168;; End: 39290;; End: