* lisp/ldefs-boot.el: Regenerate.
This commit is contained in:
parent
f690827fa5
commit
c9022d6921
1 changed files with 59 additions and 18 deletions
|
@ -2428,7 +2428,12 @@ narrowed.
|
|||
|
||||
(fn &optional BUFFER)" t)
|
||||
(autoload 'browse-url-of-dired-file "browse-url" "\
|
||||
In Dired, ask a WWW browser to display the file named on this line." t)
|
||||
In Dired, ask a WWW browser to display the file named on this line.
|
||||
With prefix arg, use the secondary browser instead (e.g. EWW if
|
||||
`browse-url-secondary-browser-function' is set to
|
||||
`eww-browse-url'.
|
||||
|
||||
(fn &optional SECONDARY)" t)
|
||||
(autoload 'browse-url-of-region "browse-url" "\
|
||||
Use a web browser to display the current region.
|
||||
See `browse-url' for details.
|
||||
|
@ -8243,14 +8248,17 @@ 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.
|
||||
|
||||
Each of KEY VALUE is a pair of CL-style keyword arguments.
|
||||
The :predicate argument specifies in which major modes should the
|
||||
The :predicate key specifies in which major modes should the
|
||||
globalized minor mode be switched on. The value should be t (meaning
|
||||
switch on the minor mode in all major modes), nil (meaning don't
|
||||
switch on in any major mode), a list of modes (meaning switch on only
|
||||
in those modes and their descendants), or a list (not MODES...),
|
||||
meaning switch on in any major mode except MODES. The value can also
|
||||
mix all of these forms, see the info node `Defining Minor Modes' for
|
||||
details.
|
||||
details. The :predicate key causes the macro to create a user option
|
||||
named the same as MODE, but ending with \"-modes\" instead of \"-mode\".
|
||||
That user option can then be used to customize in which modes this
|
||||
globalized minor mode will be switched on.
|
||||
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',
|
||||
|
@ -22465,7 +22473,7 @@ Coloring:
|
|||
|
||||
;;; Generated autoloads from org/org.el
|
||||
|
||||
(push (purecopy '(org 9 6 5)) package--builtin-versions)
|
||||
(push (purecopy '(org 9 6 6)) package--builtin-versions)
|
||||
(autoload 'org-babel-do-load-languages "org" "\
|
||||
Load the languages defined in `org-babel-load-languages'.
|
||||
|
||||
|
@ -24519,7 +24527,7 @@ Create a plstore instance associated with FILE.
|
|||
|
||||
(fn FILE)")
|
||||
(autoload 'plstore-mode "plstore" "\
|
||||
Major mode for editing PLSTORE files.
|
||||
Major mode for editing plstore files.
|
||||
|
||||
(fn)" t)
|
||||
(register-definition-prefixes "plstore" '("plstore-"))
|
||||
|
@ -25225,6 +25233,11 @@ See the doc string of `project-find-functions' for the general form
|
|||
of the project instance object.
|
||||
|
||||
(fn &optional MAYBE-PROMPT DIRECTORY)")
|
||||
(put 'project-vc-ignores 'safe-local-variable #'listp)
|
||||
(put 'project-vc-merge-submodules 'safe-local-variable #'booleanp)
|
||||
(put 'project-vc-include-untracked 'safe-local-variable #'booleanp)
|
||||
(put 'project-vc-name 'safe-local-variable #'stringp)
|
||||
(put 'project-vc-extra-root-markers 'safe-local-variable (lambda (val) (and (listp val) (not (memq nil (mapcar #'stringp val))))))
|
||||
(defvar project-prefix-map (let ((map (make-sparse-keymap))) (define-key map "!" 'project-shell-command) (define-key map "&" 'project-async-shell-command) (define-key map "f" 'project-find-file) (define-key map "F" 'project-or-external-find-file) (define-key map "b" 'project-switch-to-buffer) (define-key map "s" 'project-shell) (define-key map "d" 'project-find-dir) (define-key map "D" 'project-dired) (define-key map "v" 'project-vc-dir) (define-key map "c" 'project-compile) (define-key map "e" 'project-eshell) (define-key map "k" 'project-kill-buffers) (define-key map "p" 'project-switch-project) (define-key map "g" 'project-find-regexp) (define-key map "G" 'project-or-external-find-regexp) (define-key map "r" 'project-query-replace-regexp) (define-key map "x" 'project-execute-extended-command) (define-key map "\2" 'project-list-buffers) map) "\
|
||||
Keymap for project commands.")
|
||||
(define-key ctl-x-map "p" project-prefix-map)
|
||||
|
@ -25374,6 +25387,7 @@ start with a space (which are for internal use). With prefix argument
|
|||
ARG, show only buffers that are visiting files.
|
||||
|
||||
(fn &optional ARG)" t)
|
||||
(put 'project-kill-buffers-display-buffer-list 'safe-local-variable #'booleanp)
|
||||
(autoload 'project-kill-buffers "project" "\
|
||||
Kill the buffers belonging to the current project.
|
||||
Two buffers belong to the same project if their project
|
||||
|
@ -32942,7 +32956,9 @@ 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.
|
||||
repository URL and the C/C++ compiler to use. The recipe built
|
||||
by the prompts are saved for the current session if the
|
||||
installation is successful and the grammar is loadable.
|
||||
|
||||
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
|
||||
|
@ -34392,35 +34408,58 @@ Visit the next conflicted file in the current project." t)
|
|||
(autoload 'vc-create-tag "vc" "\
|
||||
Descending recursively from DIR, make a tag called NAME.
|
||||
For each registered file, the working revision becomes part of
|
||||
the named configuration. If the prefix argument BRANCHP is
|
||||
given, the tag is made as a new branch and the files are
|
||||
checked out in that new branch.
|
||||
the configuration identified by the tag.
|
||||
If BRANCHP is non-nil (interactively, the prefix argument), the
|
||||
tag NAME is a new branch, and the files are checked out and
|
||||
updated to reflect their revisions on that branch.
|
||||
In interactive use, DIR is `default-directory' for repository-granular
|
||||
VCSes (all the modern decentralized VCSes belong to this group),
|
||||
otherwise the command will prompt for DIR.
|
||||
|
||||
(fn DIR NAME BRANCHP)" t)
|
||||
(autoload 'vc-create-branch "vc" "\
|
||||
Descending recursively from DIR, make a branch called NAME.
|
||||
After a new branch is made, the files are checked out in that new branch.
|
||||
Uses `vc-create-tag' with the non-nil arg `branchp'.
|
||||
Make a branch called NAME in directory DIR.
|
||||
After making the new branch, check out the branch, i.e. update the
|
||||
files in the tree to their revisions on the branch.
|
||||
|
||||
Interactively, prompt for the NAME of the branch.
|
||||
|
||||
With VCSes that maintain version information per file, this command also
|
||||
prompts for the directory DIR whose files, recursively, will be tagged
|
||||
with the NAME of new branch. For VCSes that maintain version
|
||||
information for the entire repository (all the modern decentralized
|
||||
VCSes belong to this group), DIR is always the `default-directory'.
|
||||
|
||||
Finally, this command might prompt for the branch or tag from which to
|
||||
start (\"fork\") the new branch, with completion candidates including
|
||||
all the known branches and tags in the repository.
|
||||
|
||||
This command invokes `vc-create-tag' with the non-nil BRANCHP argument.
|
||||
|
||||
(fn DIR NAME)" t)
|
||||
(autoload 'vc-retrieve-tag "vc" "\
|
||||
For each file in or below DIR, retrieve their tagged version NAME.
|
||||
For each file in or below DIR, retrieve their version identified by tag NAME.
|
||||
NAME can name a branch, in which case this command will switch to the
|
||||
named branch in the directory DIR.
|
||||
Interactively, prompt for DIR only for VCS that works at file level;
|
||||
otherwise use the repository root of the current buffer.
|
||||
otherwise use the root directory of the current buffer's VC tree.
|
||||
If NAME is empty, it refers to the latest revisions of the current branch.
|
||||
If locking is used for the files in DIR, then there must not be any
|
||||
locked files at or below DIR (but if NAME is empty, locked files are
|
||||
allowed and simply skipped).
|
||||
If the prefix argument BRANCHP is given, switch the branch
|
||||
and check out the files in that branch.
|
||||
If BRANCHP is non-nil (interactively, the prefix argument), switch to the
|
||||
branch and check out and update the files to their version on that branch.
|
||||
This function runs the hook `vc-retrieve-tag-hook' when finished.
|
||||
|
||||
(fn DIR NAME &optional BRANCHP)" t)
|
||||
(autoload 'vc-switch-branch "vc" "\
|
||||
Switch to the branch NAME in the directory DIR.
|
||||
If NAME is empty, it refers to the latest revisions of the current branch.
|
||||
If NAME is empty, it refers to the latest revision of the current branch.
|
||||
Interactively, prompt for DIR only for VCS that works at file level;
|
||||
otherwise use the root directory of the current buffer's VC tree.
|
||||
Interactively, prompt for the NAME of the branch.
|
||||
After switching to the branch, check out and update the files to their
|
||||
version on that branch.
|
||||
Uses `vc-retrieve-tag' with the non-nil arg `branchp'.
|
||||
|
||||
(fn DIR NAME)" t)
|
||||
|
@ -34453,7 +34492,8 @@ with its diffs (if the underlying VCS backend supports that).
|
|||
|
||||
(fn &optional LIMIT REVISION)" t)
|
||||
(autoload 'vc-print-branch-log "vc" "\
|
||||
Show the change log for BRANCH root in a window.
|
||||
Show the change log for BRANCH in another window.
|
||||
The command prompts for the branch whose change log to show.
|
||||
|
||||
(fn BRANCH)" t)
|
||||
(autoload 'vc-log-incoming "vc" "\
|
||||
|
@ -37181,6 +37221,7 @@ run a specific program. The program must be a member of
|
|||
;; version-control: never
|
||||
;; no-update-autoloads: t
|
||||
;; no-byte-compile: t
|
||||
;; no-native-compile: t
|
||||
;; coding: utf-8-emacs-unix
|
||||
;; End:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue