mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-14 16:50:58 +00:00
Regenerated ldefs-boot.el
This commit is contained in:
parent
fffa53ff1a
commit
857d7f3881
@ -4006,8 +4006,8 @@ from which to start.
|
|||||||
(fn STRING &optional LAX FROM)")
|
(fn STRING &optional LAX FROM)")
|
||||||
(autoload 'describe-char-fold-equivalences "char-fold" "\
|
(autoload 'describe-char-fold-equivalences "char-fold" "\
|
||||||
Display characters equivalent to CHAR under character-folding.
|
Display characters equivalent to CHAR under character-folding.
|
||||||
Prompt for CHAR (using `read-char-by-name', which see for how can
|
Prompt for CHAR (using `read-char-by-name', which see for how to
|
||||||
you specify the character). With no input, i.e. when CHAR is nil,
|
specify the character). With no input, i.e. when CHAR is nil,
|
||||||
describe all available character equivalences of `char-fold-to-regexp'.
|
describe all available character equivalences of `char-fold-to-regexp'.
|
||||||
Optional argument LAX (interactively, the prefix argument), if
|
Optional argument LAX (interactively, the prefix argument), if
|
||||||
non-nil, means also include partially matching ligatures and
|
non-nil, means also include partially matching ligatures and
|
||||||
@ -4476,8 +4476,6 @@ instead.
|
|||||||
;;; Generated autoloads from emacs-lisp/cl-lib.el
|
;;; Generated autoloads from emacs-lisp/cl-lib.el
|
||||||
|
|
||||||
(push (purecopy '(cl-lib 1 0)) package--builtin-versions)
|
(push (purecopy '(cl-lib 1 0)) package--builtin-versions)
|
||||||
(define-obsolete-variable-alias 'custom-print-functions 'cl-custom-print-functions "\
|
|
||||||
24.3")
|
|
||||||
(defvar cl-custom-print-functions nil "\
|
(defvar cl-custom-print-functions nil "\
|
||||||
This is a list of functions that format user objects for printing.
|
This is a list of functions that format user objects for printing.
|
||||||
Each function is called in turn with three arguments: the object, the
|
Each function is called in turn with three arguments: the object, the
|
||||||
@ -5030,8 +5028,6 @@ evaluate `compilation-shell-minor-mode'.
|
|||||||
The mode's hook is called both when the mode is enabled and when
|
The mode's hook is called both when the mode is enabled and when
|
||||||
it is disabled.
|
it is disabled.
|
||||||
|
|
||||||
\\{compilation-shell-minor-mode-map}
|
|
||||||
|
|
||||||
(fn &optional ARG)" t)
|
(fn &optional ARG)" t)
|
||||||
(autoload 'compilation-minor-mode "compile" "\
|
(autoload 'compilation-minor-mode "compile" "\
|
||||||
Toggle Compilation minor mode.
|
Toggle Compilation minor mode.
|
||||||
@ -5055,8 +5051,6 @@ evaluate `compilation-minor-mode'.
|
|||||||
The mode's hook is called both when the mode is enabled and when
|
The mode's hook is called both when the mode is enabled and when
|
||||||
it is disabled.
|
it is disabled.
|
||||||
|
|
||||||
\\{compilation-minor-mode-map}
|
|
||||||
|
|
||||||
(fn &optional ARG)" t)
|
(fn &optional ARG)" t)
|
||||||
(autoload 'compilation-next-error-function "compile" "\
|
(autoload 'compilation-next-error-function "compile" "\
|
||||||
Advance to the next error message and visit the file where the error was.
|
Advance to the next error message and visit the file where the error was.
|
||||||
@ -7256,6 +7250,13 @@ The mode's hook is called both when the mode is enabled and when
|
|||||||
it is disabled.
|
it is disabled.
|
||||||
|
|
||||||
(fn &optional ARG)" t)
|
(fn &optional ARG)" t)
|
||||||
|
(defvar diff-add-log-use-relative-names nil "\
|
||||||
|
Use relative file names when generating ChangeLog skeletons.
|
||||||
|
The files will be relative to the root directory of the VC
|
||||||
|
repository. This option affects the behavior of
|
||||||
|
`diff-add-log-current-defuns'.")
|
||||||
|
(custom-autoload 'diff-add-log-use-relative-names "diff-mode" t)
|
||||||
|
(put 'diff-add-log-use-relative-names 'safe-local-variable #'booleanp)
|
||||||
(autoload 'diff-vc-deduce-fileset "diff-mode")
|
(autoload 'diff-vc-deduce-fileset "diff-mode")
|
||||||
(register-definition-prefixes "diff-mode" '("diff-"))
|
(register-definition-prefixes "diff-mode" '("diff-"))
|
||||||
|
|
||||||
@ -7585,6 +7586,34 @@ This provides increased compatibility for users who call this function
|
|||||||
in `.emacs'.
|
in `.emacs'.
|
||||||
|
|
||||||
(fn ARG)")
|
(fn ARG)")
|
||||||
|
(autoload 'standard-display-by-replacement-char "disp-table" "\
|
||||||
|
Produce code to display characters between FROM and TO using REPL.
|
||||||
|
This function produces a buffer with code to set up `standard-display-table'
|
||||||
|
such that characters that cannot be displayed by the terminal, and
|
||||||
|
don't already have their display set up in `standard-display-table', will
|
||||||
|
be represented by a replacement character. You can evaluate the produced
|
||||||
|
code to use the setup for the current Emacs session, or copy the code
|
||||||
|
into your init file, to make Emacs use it for subsequent sessions.
|
||||||
|
|
||||||
|
Interactively, the produced code arranges for any character in
|
||||||
|
the range [#x100..#x10FFFF] that the terminal cannot display to
|
||||||
|
be represented by the #xFFFD Unicode replacement character.
|
||||||
|
|
||||||
|
When called from Lisp, FROM and TO define the range of characters for
|
||||||
|
which to produce the setup code for `standard-display-table'. If they
|
||||||
|
are omitted, they default to #x100 and #x10FFFF respectively, covering
|
||||||
|
the entire non-ASCII range of Unicode characters.
|
||||||
|
REPL is the replacement character to use. If it's omitted, it defaults
|
||||||
|
to #xFFFD, the Unicode replacement character, usually displayed as a
|
||||||
|
black diamond with a question mark inside.
|
||||||
|
The produced code sets up `standard-display-table' to show REPL with
|
||||||
|
the `homoglyph' face, making the replacements stand out on display.
|
||||||
|
|
||||||
|
This command is most useful with text-mode terminals, such as the
|
||||||
|
Linux console, for which Emacs has a reliable way of determining
|
||||||
|
which characters can be displayed and which cannot.
|
||||||
|
|
||||||
|
(fn &optional REPL FROM TO)" t)
|
||||||
(register-definition-prefixes "disp-table" '("display-table-print-array"))
|
(register-definition-prefixes "disp-table" '("display-table-print-array"))
|
||||||
|
|
||||||
|
|
||||||
@ -8079,6 +8108,7 @@ Valid keywords and arguments are:
|
|||||||
`nodigits' to suppress digits as prefix arguments.
|
`nodigits' to suppress digits as prefix arguments.
|
||||||
|
|
||||||
(fn BS &optional NAME M ARGS)")
|
(fn BS &optional NAME M ARGS)")
|
||||||
|
(make-obsolete 'easy-mmode-define-keymap 'define-keymap "29.1")
|
||||||
(autoload 'easy-mmode-defmap "easy-mmode" "\
|
(autoload 'easy-mmode-defmap "easy-mmode" "\
|
||||||
Define a constant M whose value is the result of `easy-mmode-define-keymap'.
|
Define a constant M whose value is the result of `easy-mmode-define-keymap'.
|
||||||
The M, BS, and ARGS arguments are as per that function. DOC is
|
The M, BS, and ARGS arguments are as per that function. DOC is
|
||||||
@ -8089,6 +8119,7 @@ This macro is deprecated; use `defvar-keymap' instead.
|
|||||||
(fn M BS DOC &rest ARGS)" nil t)
|
(fn M BS DOC &rest ARGS)" nil t)
|
||||||
(function-put 'easy-mmode-defmap 'doc-string-elt 3)
|
(function-put 'easy-mmode-defmap 'doc-string-elt 3)
|
||||||
(function-put 'easy-mmode-defmap 'lisp-indent-function 1)
|
(function-put 'easy-mmode-defmap 'lisp-indent-function 1)
|
||||||
|
(make-obsolete 'easy-mmode-defmap 'defvar-keymap "29.1")
|
||||||
(autoload 'easy-mmode-defsyntax "easy-mmode" "\
|
(autoload 'easy-mmode-defsyntax "easy-mmode" "\
|
||||||
Define variable ST as a syntax-table.
|
Define variable ST as a syntax-table.
|
||||||
CSS contains a list of syntax specifications of the form (CHAR . SYNTAX).
|
CSS contains a list of syntax specifications of the form (CHAR . SYNTAX).
|
||||||
@ -8404,7 +8435,7 @@ A second call of this function without changing point inserts the next match.
|
|||||||
A call with prefix PREFIX reads the symbol to insert from the minibuffer with
|
A call with prefix PREFIX reads the symbol to insert from the minibuffer with
|
||||||
completion.
|
completion.
|
||||||
|
|
||||||
(fn PREFIX)" t)
|
(fn PREFIX)" '("P"))
|
||||||
(autoload 'ebrowse-tags-loop-continue "ebrowse" "\
|
(autoload 'ebrowse-tags-loop-continue "ebrowse" "\
|
||||||
Repeat last operation on files in tree.
|
Repeat last operation on files in tree.
|
||||||
FIRST-TIME non-nil means this is not a repetition, but the first time.
|
FIRST-TIME non-nil means this is not a repetition, but the first time.
|
||||||
@ -9951,7 +9982,7 @@ When present, ID should be an opaque object used to identify the
|
|||||||
connection unequivocally. This is rarely needed and not available
|
connection unequivocally. This is rarely needed and not available
|
||||||
interactively.
|
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)" '((erc-select-read-args)))
|
||||||
(defalias 'erc-select #'erc)
|
(defalias 'erc-select #'erc)
|
||||||
(autoload 'erc-tls "erc" "\
|
(autoload 'erc-tls "erc" "\
|
||||||
ERC is a powerful, modular, and extensible IRC client.
|
ERC is a powerful, modular, and extensible IRC client.
|
||||||
@ -9998,7 +10029,7 @@ symbol composed of letters from the Latin alphabet.) This option is
|
|||||||
generally unneeded, however. See info node `(erc) Connecting' for use
|
generally unneeded, however. See info node `(erc) Connecting' for use
|
||||||
cases. Not available interactively.
|
cases. 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)) CLIENT-CERTIFICATE 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)) CLIENT-CERTIFICATE ID)" '((let ((erc-default-port erc-default-port-tls)) (erc-select-read-args))))
|
||||||
(autoload 'erc-handle-irc-url "erc" "\
|
(autoload 'erc-handle-irc-url "erc" "\
|
||||||
Use ERC to IRC on HOST:PORT in CHANNEL as USER with PASSWORD.
|
Use ERC to IRC on HOST:PORT in CHANNEL as USER with PASSWORD.
|
||||||
If ERC is already connected to HOST:PORT, simply /join CHANNEL.
|
If ERC is already connected to HOST:PORT, simply /join CHANNEL.
|
||||||
@ -10214,9 +10245,7 @@ it has to be wrapped in `(eval (quote ...))'.
|
|||||||
If NAME is already defined as a test and Emacs is running
|
If NAME is already defined as a test and Emacs is running
|
||||||
in batch mode, an error is signalled.
|
in batch mode, an error is signalled.
|
||||||
|
|
||||||
(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] BODY...)" nil t)
|
(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] BODY...)" nil 'macro)
|
||||||
(function-put 'ert-deftest 'doc-string-elt 3)
|
|
||||||
(function-put 'ert-deftest 'lisp-indent-function 2)
|
|
||||||
(autoload 'ert-run-tests-batch "ert" "\
|
(autoload 'ert-run-tests-batch "ert" "\
|
||||||
Run the tests specified by SELECTOR, printing results to the terminal.
|
Run the tests specified by SELECTOR, printing results to the terminal.
|
||||||
|
|
||||||
@ -12122,12 +12151,17 @@ Define some key bindings for the `find-function' family of functions.")
|
|||||||
;;; Generated autoloads from find-lisp.el
|
;;; Generated autoloads from find-lisp.el
|
||||||
|
|
||||||
(autoload 'find-lisp-find-dired "find-lisp" "\
|
(autoload 'find-lisp-find-dired "find-lisp" "\
|
||||||
Find files in DIR, matching REGEXP.
|
Find the files within DIR whose names match REGEXP.
|
||||||
|
A Dired buffer with the results will be opened.
|
||||||
|
|
||||||
(fn DIR REGEXP)" t)
|
(fn DIR REGEXP)" t)
|
||||||
(autoload 'find-lisp-find-dired-subdirectories "find-lisp" "\
|
(autoload 'find-lisp-find-dired-subdirectories "find-lisp" "\
|
||||||
Find all subdirectories of DIR.
|
Find all subdirectories of DIR.
|
||||||
|
|
||||||
|
(fn DIR)" t)
|
||||||
|
(autoload 'find-lisp-find-dired-subdirs-other-window "find-lisp" "\
|
||||||
|
Same as `find-lisp-find-dired-subdirectories', but use another window.
|
||||||
|
|
||||||
(fn DIR)" t)
|
(fn DIR)" t)
|
||||||
(autoload 'find-lisp-find-dired-filter "find-lisp" "\
|
(autoload 'find-lisp-find-dired-filter "find-lisp" "\
|
||||||
Change the filter on a `find-lisp-find-dired' buffer to REGEXP.
|
Change the filter on a `find-lisp-find-dired' buffer to REGEXP.
|
||||||
@ -12287,8 +12321,6 @@ evaluate `flymake-mode'.
|
|||||||
The mode's hook is called both when the mode is enabled and when
|
The mode's hook is called both when the mode is enabled and when
|
||||||
it is disabled.
|
it is disabled.
|
||||||
|
|
||||||
\\{flymake-mode-map}
|
|
||||||
|
|
||||||
(fn &optional ARG)" t)
|
(fn &optional ARG)" t)
|
||||||
(autoload 'flymake-mode-on "flymake" "\
|
(autoload 'flymake-mode-on "flymake" "\
|
||||||
Turn Flymake mode on.")
|
Turn Flymake mode on.")
|
||||||
@ -15902,8 +15934,7 @@ inlined into the compiled format versions. This means that if you
|
|||||||
change its definition, you should explicitly call
|
change its definition, you should explicitly call
|
||||||
`ibuffer-recompile-formats'.
|
`ibuffer-recompile-formats'.
|
||||||
|
|
||||||
(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil t)
|
(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil 'macro)
|
||||||
(function-put 'define-ibuffer-column 'lisp-indent-function 'defun)
|
|
||||||
(autoload 'define-ibuffer-sorter "ibuf-macs" "\
|
(autoload 'define-ibuffer-sorter "ibuf-macs" "\
|
||||||
Define a method of sorting named NAME.
|
Define a method of sorting named NAME.
|
||||||
DOCUMENTATION is the documentation of the function, which will be called
|
DOCUMENTATION is the documentation of the function, which will be called
|
||||||
@ -15914,9 +15945,7 @@ For sorting, the forms in BODY will be evaluated with `a' bound to one
|
|||||||
buffer object, and `b' bound to another. BODY should return a non-nil
|
buffer object, and `b' bound to another. BODY should return a non-nil
|
||||||
value if and only if `a' is \"less than\" `b'.
|
value if and only if `a' is \"less than\" `b'.
|
||||||
|
|
||||||
(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil t)
|
(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil 'macro)
|
||||||
(function-put 'define-ibuffer-sorter 'lisp-indent-function 1)
|
|
||||||
(function-put 'define-ibuffer-sorter 'doc-string-elt 2)
|
|
||||||
(autoload 'define-ibuffer-op "ibuf-macs" "\
|
(autoload 'define-ibuffer-op "ibuf-macs" "\
|
||||||
Generate a function which operates on a buffer.
|
Generate a function which operates on a buffer.
|
||||||
OP becomes the name of the function; if it doesn't begin with
|
OP becomes the name of the function; if it doesn't begin with
|
||||||
@ -15955,9 +15984,7 @@ BODY define the operation; they are forms to evaluate per each
|
|||||||
marked buffer. BODY is evaluated with `buf' bound to the
|
marked buffer. BODY is evaluated with `buf' bound to the
|
||||||
buffer object.
|
buffer object.
|
||||||
|
|
||||||
(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING BEFORE AFTER COMPLEX) &rest BODY)" nil t)
|
(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING BEFORE AFTER COMPLEX) &rest BODY)" nil 'macro)
|
||||||
(function-put 'define-ibuffer-op 'lisp-indent-function 2)
|
|
||||||
(function-put 'define-ibuffer-op 'doc-string-elt 3)
|
|
||||||
(autoload 'define-ibuffer-filter "ibuf-macs" "\
|
(autoload 'define-ibuffer-filter "ibuf-macs" "\
|
||||||
Define a filter named NAME.
|
Define a filter named NAME.
|
||||||
DOCUMENTATION is the documentation of the function.
|
DOCUMENTATION is the documentation of the function.
|
||||||
@ -15972,9 +15999,7 @@ not a particular buffer should be displayed or not. The forms in BODY
|
|||||||
will be evaluated with BUF bound to the buffer object, and QUALIFIER
|
will be evaluated with BUF bound to the buffer object, and QUALIFIER
|
||||||
bound to the current value of the filter.
|
bound to the current value of the filter.
|
||||||
|
|
||||||
(fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" nil t)
|
(fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" nil 'macro)
|
||||||
(function-put 'define-ibuffer-filter 'lisp-indent-function 2)
|
|
||||||
(function-put 'define-ibuffer-filter 'doc-string-elt 2)
|
|
||||||
(register-definition-prefixes "ibuf-macs" '("ibuffer-"))
|
(register-definition-prefixes "ibuf-macs" '("ibuffer-"))
|
||||||
|
|
||||||
|
|
||||||
@ -16916,17 +16941,32 @@ should output the image in the current buffer, converted to
|
|||||||
(register-definition-prefixes "image-converter" '("image-convert"))
|
(register-definition-prefixes "image-converter" '("image-convert"))
|
||||||
|
|
||||||
|
|
||||||
;;; Generated autoloads from image-dired.el
|
;;; Generated autoloads from image/image-crop.el
|
||||||
|
|
||||||
|
(autoload 'image-elide "image-crop" "\
|
||||||
|
Elide a square from the image under point.
|
||||||
|
If SQUARE (interactively, the prefix), elide a square instead of a
|
||||||
|
rectangle from the image.
|
||||||
|
|
||||||
|
(fn &optional SQUARE)" t)
|
||||||
|
(autoload 'image-crop "image-crop" "\
|
||||||
|
Crop the image under point.
|
||||||
|
If SQUARE (interactively, the prefix), crop a square instead of a
|
||||||
|
rectangle from the image.
|
||||||
|
|
||||||
|
If ELIDE, remove a rectangle from the image instead of cropping
|
||||||
|
the image.
|
||||||
|
|
||||||
|
After cropping an image, it can be saved by `M-x image-save' or
|
||||||
|
\\<image-map>\\[image-save] when point is over the image.
|
||||||
|
|
||||||
|
(fn &optional SQUARE ELIDE)" t)
|
||||||
|
(register-definition-prefixes "image-crop" '("image-crop-"))
|
||||||
|
|
||||||
|
|
||||||
|
;;; Generated autoloads from image/image-dired.el
|
||||||
|
|
||||||
(push (purecopy '(image-dired 0 4 11)) package--builtin-versions)
|
(push (purecopy '(image-dired 0 4 11)) package--builtin-versions)
|
||||||
(autoload 'image-dired-dired-toggle-marked-thumbs "image-dired" "\
|
|
||||||
Toggle thumbnails in front of file names in the Dired buffer.
|
|
||||||
If no marked file could be found, insert or hide thumbnails on the
|
|
||||||
current line. ARG, if non-nil, specifies the files to use instead
|
|
||||||
of the marked files. If ARG is an integer, use the next ARG (or
|
|
||||||
previous -ARG, if ARG<0) files.
|
|
||||||
|
|
||||||
(fn &optional ARG)" t)
|
|
||||||
(autoload 'image-dired-dired-with-window-configuration "image-dired" "\
|
(autoload 'image-dired-dired-with-window-configuration "image-dired" "\
|
||||||
Open directory DIR and create a default window configuration.
|
Open directory DIR and create a default window configuration.
|
||||||
|
|
||||||
@ -16967,7 +17007,7 @@ used or not. If non-nil, use `display-buffer' instead of
|
|||||||
`image-dired-previous-line-and-display' where we do not want the
|
`image-dired-previous-line-and-display' where we do not want the
|
||||||
thumbnail buffer to be selected.
|
thumbnail buffer to be selected.
|
||||||
|
|
||||||
(fn &optional ARG APPEND DO-NOT-POP)" t)
|
(fn &optional ARG APPEND DO-NOT-POP)" '(nil dired-mode))
|
||||||
(autoload 'image-dired-show-all-from-dir "image-dired" "\
|
(autoload 'image-dired-show-all-from-dir "image-dired" "\
|
||||||
Make a thumbnail buffer for all images in DIR and display it.
|
Make a thumbnail buffer for all images in DIR and display it.
|
||||||
Any file matching `image-file-name-regexp' is considered an image
|
Any file matching `image-file-name-regexp' is considered an image
|
||||||
@ -16980,18 +17020,28 @@ never ask for confirmation.
|
|||||||
|
|
||||||
(fn DIR)" t)
|
(fn DIR)" t)
|
||||||
(defalias 'image-dired 'image-dired-show-all-from-dir)
|
(defalias 'image-dired 'image-dired-show-all-from-dir)
|
||||||
(autoload 'image-dired-tag-files "image-dired" "\
|
(autoload 'image-dired-bookmark-jump "image-dired" "\
|
||||||
Tag marked file(s) in Dired. With prefix ARG, tag file at point.
|
Default bookmark handler for Image-Dired buffers.
|
||||||
|
|
||||||
(fn ARG)" t)
|
(fn BOOKMARK)")
|
||||||
(autoload 'image-dired-delete-tag "image-dired" "\
|
(define-obsolete-function-alias 'tumme #'image-dired "24.4")
|
||||||
Remove tag for selected file(s).
|
(define-obsolete-function-alias 'image-dired-setup-dired-keybindings #'image-dired-minor-mode "26.1")
|
||||||
With prefix argument ARG, remove tag from file at point.
|
(register-definition-prefixes "image-dired" '("image-dired-"))
|
||||||
|
|
||||||
(fn ARG)" t)
|
|
||||||
(autoload 'image-dired-jump-thumbnail-buffer "image-dired" "\
|
;;; Generated autoloads from image/image-dired-dired.el
|
||||||
Jump to thumbnail buffer." t)
|
|
||||||
(autoload 'image-dired-minor-mode "image-dired" "\
|
(autoload 'image-dired-dired-toggle-marked-thumbs "image-dired-dired" "\
|
||||||
|
Toggle thumbnails in front of file names in the Dired buffer.
|
||||||
|
If no marked file could be found, insert or hide thumbnails on the
|
||||||
|
current line. ARG, if non-nil, specifies the files to use instead
|
||||||
|
of the marked files. If ARG is an integer, use the next ARG (or
|
||||||
|
previous -ARG, if ARG<0) files.
|
||||||
|
|
||||||
|
(fn &optional ARG)" '(dired-mode))
|
||||||
|
(autoload 'image-dired-jump-thumbnail-buffer "image-dired-dired" "\
|
||||||
|
Jump to thumbnail buffer." '(dired-mode))
|
||||||
|
(autoload 'image-dired-minor-mode "image-dired-dired" "\
|
||||||
Setup easy-to-use keybindings for the commands to be used in Dired mode.
|
Setup easy-to-use keybindings for the commands to be used in Dired mode.
|
||||||
|
|
||||||
Note that n, p and <down> and <up> will be hijacked and bound to
|
Note that n, p and <down> and <up> will be hijacked and bound to
|
||||||
@ -17013,21 +17063,19 @@ The mode's hook is called both when the mode is enabled and when
|
|||||||
it is disabled.
|
it is disabled.
|
||||||
|
|
||||||
(fn &optional ARG)" t)
|
(fn &optional ARG)" t)
|
||||||
(autoload 'image-dired-display-thumbs-append "image-dired" "\
|
(autoload 'image-dired-display-thumbs-append "image-dired-dired" "\
|
||||||
Append thumbnails to `image-dired-thumbnail-buffer'." t)
|
Append thumbnails to `image-dired-thumbnail-buffer'." '(dired-mode))
|
||||||
(autoload 'image-dired-display-thumb "image-dired" "\
|
(autoload 'image-dired-display-thumb "image-dired-dired" "\
|
||||||
Shorthand for `image-dired-display-thumbs' with prefix argument." t)
|
Shorthand for `image-dired-display-thumbs' with prefix argument." '(dired-mode))
|
||||||
(autoload 'image-dired-dired-display-external "image-dired" "\
|
(autoload 'image-dired-dired-display-external "image-dired-dired" "\
|
||||||
Display file at point using an external viewer." t)
|
Display file at point using an external viewer." '(dired-mode))
|
||||||
(autoload 'image-dired-dired-display-image "image-dired" "\
|
(autoload 'image-dired-dired-display-image "image-dired-dired" "\
|
||||||
Display current image file.
|
Display current image file.
|
||||||
See documentation for `image-dired-display-image' for more information.
|
See documentation for `image-dired-display-image' for more information.
|
||||||
With prefix argument ARG, display image in its original size.
|
|
||||||
|
|
||||||
(fn &optional ARG)" t)
|
(fn &optional _)" '(dired-mode))
|
||||||
(autoload 'image-dired-dired-comment-files "image-dired" "\
|
(set-advertised-calling-convention 'image-dired-dired-display-image 'nil '"29.1")
|
||||||
Add comment to current or marked files in Dired." t)
|
(autoload 'image-dired-mark-tagged-files "image-dired-dired" "\
|
||||||
(autoload 'image-dired-mark-tagged-files "image-dired" "\
|
|
||||||
Use REGEXP to mark files with matching tag.
|
Use REGEXP to mark files with matching tag.
|
||||||
A `tag' is a keyword, a piece of meta data, associated with an
|
A `tag' is a keyword, a piece of meta data, associated with an
|
||||||
image file and stored in image-dired's database file. This command
|
image file and stored in image-dired's database file. This command
|
||||||
@ -17035,18 +17083,38 @@ lets you input a regexp and this will be matched against all tags
|
|||||||
on all image files in the database file. The files that have a
|
on all image files in the database file. The files that have a
|
||||||
matching tag will be marked in the Dired buffer.
|
matching tag will be marked in the Dired buffer.
|
||||||
|
|
||||||
(fn REGEXP)" t)
|
(fn REGEXP)" '(dired-mode))
|
||||||
(autoload 'image-dired-dired-edit-comment-and-tags "image-dired" "\
|
(register-definition-prefixes "image-dired-dired" '("image-dired-"))
|
||||||
|
|
||||||
|
|
||||||
|
;;; Generated autoloads from image/image-dired-external.el
|
||||||
|
|
||||||
|
(register-definition-prefixes "image-dired-external" '("image-dired-"))
|
||||||
|
|
||||||
|
|
||||||
|
;;; Generated autoloads from image/image-dired-tags.el
|
||||||
|
|
||||||
|
(autoload 'image-dired-tag-files "image-dired-tags" "\
|
||||||
|
Tag marked file(s) in Dired. With prefix ARG, tag file at point.
|
||||||
|
|
||||||
|
(fn ARG)" '(dired-mode))
|
||||||
|
(autoload 'image-dired-delete-tag "image-dired-tags" "\
|
||||||
|
Remove tag for selected file(s).
|
||||||
|
With prefix argument ARG, remove tag from file at point.
|
||||||
|
|
||||||
|
(fn ARG)" '(dired-mode))
|
||||||
|
(autoload 'image-dired-dired-comment-files "image-dired-tags" "\
|
||||||
|
Add comment to current or marked files in Dired." '(dired-mode))
|
||||||
|
(autoload 'image-dired-dired-edit-comment-and-tags "image-dired-tags" "\
|
||||||
Edit comment and tags of current or marked image files.
|
Edit comment and tags of current or marked image files.
|
||||||
Edit comment and tags for all marked image files in an
|
Edit comment and tags for all marked image files in an
|
||||||
easy-to-use form." t)
|
easy-to-use form." '(dired-mode))
|
||||||
(autoload 'image-dired-bookmark-jump "image-dired" "\
|
(register-definition-prefixes "image-dired-tags" '("image-dired-"))
|
||||||
Default bookmark handler for Image-Dired buffers.
|
|
||||||
|
|
||||||
(fn BOOKMARK)")
|
|
||||||
(define-obsolete-function-alias 'tumme #'image-dired "24.4")
|
;;; Generated autoloads from image/image-dired-util.el
|
||||||
(define-obsolete-function-alias 'image-dired-setup-dired-keybindings #'image-dired-minor-mode "26.1")
|
|
||||||
(register-definition-prefixes "image-dired" '("image-dired-"))
|
(register-definition-prefixes "image-dired-util" '("image-dired-"))
|
||||||
|
|
||||||
|
|
||||||
;;; Generated autoloads from image-file.el
|
;;; Generated autoloads from image-file.el
|
||||||
@ -18488,7 +18556,7 @@ This option also treats some characters in the `mule-unicode-...'
|
|||||||
charsets if you don't have a Unicode font with which to display them.
|
charsets if you don't have a Unicode font with which to display them.
|
||||||
|
|
||||||
Setting this variable directly does not take effect;
|
Setting this variable directly does not take effect;
|
||||||
use either \\[customize] or the function `latin1-display'.")
|
use either \\[customize] or the command `latin1-display'.")
|
||||||
(custom-autoload 'latin1-display "latin1-disp" nil)
|
(custom-autoload 'latin1-display "latin1-disp" nil)
|
||||||
(autoload 'latin1-display "latin1-disp" "\
|
(autoload 'latin1-display "latin1-disp" "\
|
||||||
Set up Latin-1/ASCII display for the arguments character SETS.
|
Set up Latin-1/ASCII display for the arguments character SETS.
|
||||||
@ -18504,7 +18572,7 @@ This uses the transliterations of the Lynx browser. The display isn't
|
|||||||
changed if the display can render Unicode characters.
|
changed if the display can render Unicode characters.
|
||||||
|
|
||||||
Setting this variable directly does not take effect;
|
Setting this variable directly does not take effect;
|
||||||
use either \\[customize] or the function `latin1-display'.")
|
use either \\[customize] or the command `latin1-display-ucs-per-lynx'.")
|
||||||
(custom-autoload 'latin1-display-ucs-per-lynx "latin1-disp" nil)
|
(custom-autoload 'latin1-display-ucs-per-lynx "latin1-disp" nil)
|
||||||
(autoload 'latin1-display-ucs-per-lynx "latin1-disp" "\
|
(autoload 'latin1-display-ucs-per-lynx "latin1-disp" "\
|
||||||
Set up Latin-1/ASCII display for Unicode characters.
|
Set up Latin-1/ASCII display for Unicode characters.
|
||||||
@ -21908,7 +21976,7 @@ Coloring:
|
|||||||
|
|
||||||
;;; Generated autoloads from org/org.el
|
;;; Generated autoloads from org/org.el
|
||||||
|
|
||||||
(push (purecopy '(org 9 5 4)) package--builtin-versions)
|
(push (purecopy '(org 9 5 5)) 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'.
|
||||||
|
|
||||||
@ -24827,8 +24895,8 @@ Run an inferior Python process.
|
|||||||
Argument CMD defaults to `python-shell-calculate-command' return
|
Argument CMD defaults to `python-shell-calculate-command' return
|
||||||
value. When called interactively with `prefix-arg', it allows
|
value. When called interactively with `prefix-arg', it allows
|
||||||
the user to edit such value and choose whether the interpreter
|
the user to edit such value and choose whether the interpreter
|
||||||
should be DEDICATED for the current buffer. When numeric prefix
|
should be DEDICATED to the current buffer or project. When
|
||||||
arg is other than 0 or 4 do not SHOW.
|
numeric prefix arg is other than 0 or 4 do not SHOW.
|
||||||
|
|
||||||
For a given buffer and same values of DEDICATED, if a process is
|
For a given buffer and same values of DEDICATED, if a process is
|
||||||
already running for it, it will do nothing. This means that if
|
already running for it, it will do nothing. This means that if
|
||||||
@ -24840,6 +24908,37 @@ Runs the hook `inferior-python-mode-hook' after
|
|||||||
process buffer for a list of commands.)
|
process buffer for a list of commands.)
|
||||||
|
|
||||||
(fn &optional CMD DEDICATED SHOW)" t)
|
(fn &optional CMD DEDICATED SHOW)" t)
|
||||||
|
(autoload 'python-add-import "python" "\
|
||||||
|
Add an import statement to the current buffer.
|
||||||
|
|
||||||
|
Interactively, ask for an import statement using all imports
|
||||||
|
found in the current project as suggestions. With a prefix
|
||||||
|
argument, restrict the suggestions to imports defining the symbol
|
||||||
|
at point. If there is only one such suggestion, act without
|
||||||
|
asking.
|
||||||
|
|
||||||
|
When calling from Lisp, use a non-nil NAME to restrict the
|
||||||
|
suggestions to imports defining NAME.
|
||||||
|
|
||||||
|
(fn NAME)" t)
|
||||||
|
(autoload 'python-import-symbol-at-point "python" "\
|
||||||
|
Add an import statement for the symbol at point to the current buffer.
|
||||||
|
This works like `python-add-import', but with the opposite
|
||||||
|
behavior regarding the prefix argument." t)
|
||||||
|
(autoload 'python-remove-import "python" "\
|
||||||
|
Remove an import statement from the current buffer.
|
||||||
|
|
||||||
|
Interactively, ask for an import statement to remove, displaying
|
||||||
|
the imports of the current buffer as suggestions. With a prefix
|
||||||
|
argument, restrict the suggestions to imports defining the symbol
|
||||||
|
at point. If there is only one such suggestion, act without
|
||||||
|
asking.
|
||||||
|
|
||||||
|
(fn NAME)" t)
|
||||||
|
(autoload 'python-sort-imports "python" "\
|
||||||
|
Sort Python imports in the current buffer." t)
|
||||||
|
(autoload 'python-fix-imports "python" "\
|
||||||
|
Add missing imports and remove unused ones from the current buffer." t)
|
||||||
(autoload 'python-mode "python" "\
|
(autoload 'python-mode "python" "\
|
||||||
Major mode for editing Python files.
|
Major mode for editing Python files.
|
||||||
|
|
||||||
@ -25360,8 +25459,6 @@ evaluate `rectangle-mark-mode'.
|
|||||||
The mode's hook is called both when the mode is enabled and when
|
The mode's hook is called both when the mode is enabled and when
|
||||||
it is disabled.
|
it is disabled.
|
||||||
|
|
||||||
\\{rectangle-mark-mode-map}
|
|
||||||
|
|
||||||
(fn &optional ARG)" t)
|
(fn &optional ARG)" t)
|
||||||
(register-definition-prefixes "rect" '("apply-on-rectangle" "clear-rectangle-line" "delete-" "extract-rectangle-" "killed-rectangle" "ope" "rectangle-" "spaces-string" "string-rectangle-"))
|
(register-definition-prefixes "rect" '("apply-on-rectangle" "clear-rectangle-line" "delete-" "extract-rectangle-" "killed-rectangle" "ope" "rectangle-" "spaces-string" "string-rectangle-"))
|
||||||
|
|
||||||
@ -31755,7 +31852,7 @@ It must be supported by libarchive(3).")
|
|||||||
List of suffixes which indicate a compressed file.
|
List of suffixes which indicate a compressed file.
|
||||||
It must be supported by libarchive(3).")
|
It must be supported by libarchive(3).")
|
||||||
(defmacro tramp-archive-autoload-file-name-regexp nil "\
|
(defmacro tramp-archive-autoload-file-name-regexp nil "\
|
||||||
Regular expression matching archive file names." '(rx bos (group (+ nonl) "." (regexp (regexp-opt tramp-archive-suffixes)) (32 "." (regexp (regexp-opt tramp-archive-compression-suffixes)))) (group "/" (* nonl)) eos))
|
Regular expression matching archive file names." `(rx bos (group (+ nonl) "." ,(cons '| tramp-archive-suffixes) (32 "." ,(cons '| tramp-archive-compression-suffixes))) (group "/" (* nonl)) eos))
|
||||||
(autoload 'tramp-archive-file-name-handler "tramp-archive")
|
(autoload 'tramp-archive-file-name-handler "tramp-archive")
|
||||||
(defun tramp-archive-autoload-file-name-handler (operation &rest args) "\
|
(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)))
|
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)))
|
||||||
@ -31778,6 +31875,7 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar
|
|||||||
|
|
||||||
;;; Generated autoloads from net/tramp-compat.el
|
;;; Generated autoloads from net/tramp-compat.el
|
||||||
|
|
||||||
|
(defalias 'tramp-compat-rx #'rx)
|
||||||
(register-definition-prefixes "tramp-compat" '("tramp-"))
|
(register-definition-prefixes "tramp-compat" '("tramp-"))
|
||||||
|
|
||||||
|
|
||||||
@ -32593,14 +32691,14 @@ Fetch a GNU Info URL.
|
|||||||
|
|
||||||
|
|
||||||
(fn URL)")
|
(fn URL)")
|
||||||
(defalias 'url-rlogin 'url-generic-emulator-loader)
|
(define-obsolete-function-alias 'url-rlogin #'url-generic-emulator-loader "29.1")
|
||||||
(defalias 'url-telnet 'url-generic-emulator-loader)
|
(defalias 'url-telnet 'url-generic-emulator-loader)
|
||||||
(defalias 'url-tn3270 'url-generic-emulator-loader)
|
(defalias 'url-tn3270 'url-generic-emulator-loader)
|
||||||
(autoload 'url-data "url-misc" "\
|
(autoload 'url-data "url-misc" "\
|
||||||
Fetch a data URL (RFC 2397).
|
Fetch a data URL (RFC 2397).
|
||||||
|
|
||||||
(fn URL)")
|
(fn URL)")
|
||||||
(register-definition-prefixes "url-misc" '("url-do-terminal-emulator"))
|
(register-definition-prefixes "url-misc" '("url-"))
|
||||||
|
|
||||||
|
|
||||||
;;; Generated autoloads from url/url-news.el
|
;;; Generated autoloads from url/url-news.el
|
||||||
@ -33161,6 +33259,12 @@ given, the tag is made as a new branch and the files are
|
|||||||
checked out in that new branch.
|
checked out in that new branch.
|
||||||
|
|
||||||
(fn DIR NAME BRANCHP)" t)
|
(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'.
|
||||||
|
|
||||||
|
(fn DIR NAME)" t)
|
||||||
(autoload 'vc-retrieve-tag "vc" "\
|
(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 tagged version NAME.
|
||||||
NAME can name a branch, in which case this command will switch to the
|
NAME can name a branch, in which case this command will switch to the
|
||||||
@ -33171,8 +33275,16 @@ 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
|
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
|
locked files at or below DIR (but if NAME is empty, locked files are
|
||||||
allowed and simply skipped).
|
allowed and simply skipped).
|
||||||
|
If the prefix argument BRANCHP is given, switch the branch
|
||||||
|
and check out the files in that branch.
|
||||||
This function runs the hook `vc-retrieve-tag-hook' when finished.
|
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.
|
||||||
|
Uses `vc-retrieve-tag' with the non-nil arg `branchp'.
|
||||||
|
|
||||||
(fn DIR NAME)" t)
|
(fn DIR NAME)" t)
|
||||||
(autoload 'vc-print-log "vc" "\
|
(autoload 'vc-print-log "vc" "\
|
||||||
List the change log of the current fileset in a window.
|
List the change log of the current fileset in a window.
|
||||||
@ -33446,6 +33558,13 @@ case, and the process object in the asynchronous case.
|
|||||||
|
|
||||||
;;; Generated autoloads from vc/vc-git.el
|
;;; Generated autoloads from vc/vc-git.el
|
||||||
|
|
||||||
|
(autoload 'vc-git-annotate-switches-safe-p "vc-git" "\
|
||||||
|
Check if local value of `vc-git-annotate-switches' is safe.
|
||||||
|
Currently only \"-w\" (ignore whitespace) is considered safe, but
|
||||||
|
this list might be extended in the future.
|
||||||
|
|
||||||
|
(fn SWITCHES)")
|
||||||
|
(put 'vc-git-annotate-switches 'safe-local-variable #'vc-git-annotate-switches-safe-p)
|
||||||
(defun vc-git-registered (file)
|
(defun vc-git-registered (file)
|
||||||
"Return non-nil if FILE is registered with git."
|
"Return non-nil if FILE is registered with git."
|
||||||
(if (vc-find-root file ".git") ; Short cut.
|
(if (vc-find-root file ".git") ; Short cut.
|
||||||
@ -35636,7 +35755,7 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT.
|
|||||||
|
|
||||||
;;; Generated autoloads from progmodes/xref.el
|
;;; Generated autoloads from progmodes/xref.el
|
||||||
|
|
||||||
(push (purecopy '(xref 1 5 0)) package--builtin-versions)
|
(push (purecopy '(xref 1 5 1)) package--builtin-versions)
|
||||||
(autoload 'xref-find-backend "xref")
|
(autoload 'xref-find-backend "xref")
|
||||||
(define-obsolete-function-alias 'xref-pop-marker-stack #'xref-go-back "29.1")
|
(define-obsolete-function-alias 'xref-pop-marker-stack #'xref-go-back "29.1")
|
||||||
(autoload 'xref-go-back "xref" "\
|
(autoload 'xref-go-back "xref" "\
|
||||||
@ -35855,6 +35974,7 @@ Zone out, completely." t)
|
|||||||
;; no-byte-compile: t
|
;; no-byte-compile: t
|
||||||
;; version-control: never
|
;; version-control: never
|
||||||
;; no-update-autoloads: t
|
;; no-update-autoloads: t
|
||||||
|
;; no-native-compile: t
|
||||||
;; coding: utf-8-emacs-unix
|
;; coding: utf-8-emacs-unix
|
||||||
;; End:
|
;; End:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user