aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2022-09-24 16:51:37 +0200
committerLars Ingebrigtsen2022-09-24 16:51:53 +0200
commit0df73dabc1690b66eb62eac10ff62db1863b256e (patch)
treed7ad0357929cac1a814362f8d77a261ec3f7f913
parentb7fb82bc41b807545a369c5ee61de5a557927c7f (diff)
downloademacs-0df73dabc1690b66eb62eac10ff62db1863b256e.tar.gz
emacs-0df73dabc1690b66eb62eac10ff62db1863b256e.zip
Regenerated ldefs-boot.el
-rw-r--r--lisp/ldefs-boot.el248
1 files changed, 88 insertions, 160 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 47080250020..98a94b310cf 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -4312,79 +4312,6 @@ it is disabled.
4312;;; Generated autoloads from emacs-lisp/cl-generic.el 4312;;; Generated autoloads from emacs-lisp/cl-generic.el
4313 4313
4314(push (purecopy '(cl-generic 1 0)) package--builtin-versions) 4314(push (purecopy '(cl-generic 1 0)) package--builtin-versions)
4315(autoload 'cl-defgeneric "cl-generic" "\
4316Create a generic function NAME.
4317DOC-STRING is the base documentation for this class. A generic
4318function has no body, as its purpose is to decide which method body
4319is appropriate to use. Specific methods are defined with `cl-defmethod'.
4320With this implementation the ARGS are currently ignored.
4321OPTIONS-AND-METHODS currently understands:
4322- (:documentation DOCSTRING)
4323- (declare DECLARATIONS)
4324- (:argument-precedence-order &rest ARGS)
4325- (:method [QUALIFIERS...] ARGS &rest BODY)
4326DEFAULT-BODY, if present, is used as the body of a default method.
4327
4328(fn NAME ARGS [DOC-STRING] [OPTIONS-AND-METHODS...] &rest DEFAULT-BODY)" nil t)
4329(function-put 'cl-defgeneric 'lisp-indent-function 2)
4330(function-put 'cl-defgeneric 'doc-string-elt 3)
4331(autoload 'cl-generic-define "cl-generic" "\
4332
4333
4334(fn NAME ARGS OPTIONS)")
4335(autoload 'cl-defmethod "cl-generic" "\
4336Define a new method for generic function NAME.
4337This defines an implementation of NAME to use for invocations
4338of specific types of arguments.
4339
4340ARGS is a list of dispatch arguments (see `cl-defun'), but where
4341each variable element is either just a single variable name VAR,
4342or a list on the form (VAR TYPE).
4343
4344For instance:
4345
4346 (cl-defmethod foo (bar (format-string string) &optional zot)
4347 (format format-string bar))
4348
4349The dispatch arguments have to be among the mandatory arguments, and
4350all methods of NAME have to use the same set of arguments for dispatch.
4351Each dispatch argument and TYPE are specified in ARGS where the corresponding
4352formal argument appears as (VAR TYPE) rather than just VAR.
4353
4354The optional EXTRA element, on the form `:extra STRING', allows
4355you to add more methods for the same specializers and qualifiers.
4356These are distinguished by STRING.
4357
4358The optional argument QUALIFIER is a specifier that modifies how
4359the method is combined with other methods, including:
4360 :before - Method will be called before the primary
4361 :after - Method will be called after the primary
4362 :around - Method will be called around everything else
4363The absence of QUALIFIER means this is a \"primary\" method.
4364The set of acceptable qualifiers and their meaning is defined
4365(and can be extended) by the methods of `cl-generic-combine-methods'.
4366
4367ARGS can also include so-called context specializers, introduced by
4368`&context' (which should appear right after the mandatory arguments,
4369before any &optional or &rest). They have the form (EXPR TYPE) where
4370EXPR is an Elisp expression whose value should match TYPE for the
4371method to be applicable.
4372
4373The set of acceptable TYPEs (also called \"specializers\") is defined
4374(and can be extended) by the various methods of `cl-generic-generalizers'.
4375
4376(fn NAME [EXTRA] [QUALIFIER] ARGS &rest [DOCSTRING] BODY)" nil t)
4377(function-put 'cl-defmethod 'doc-string-elt 'cl--defmethod-doc-pos)
4378(function-put 'cl-defmethod 'lisp-indent-function 'defun)
4379(autoload 'cl-generic-define-method "cl-generic" "\
4380
4381
4382(fn NAME QUALIFIERS ARGS CALL-CON FUNCTION)")
4383(autoload 'cl-find-method "cl-generic" "\
4384
4385
4386(fn GENERIC QUALIFIERS SPECIALIZERS)")
4387(register-definition-prefixes "cl-generic" '("cl-"))
4388 4315
4389 4316
4390;;; Generated autoloads from emacs-lisp/cl-indent.el 4317;;; Generated autoloads from emacs-lisp/cl-indent.el
@@ -9485,6 +9412,8 @@ Already submitted bugs can be found in the Emacs bug tracker:
9485 9412
9486(fn TOPIC &optional UNUSED)" t) 9413(fn TOPIC &optional UNUSED)" t)
9487(set-advertised-calling-convention 'report-emacs-bug '(topic) '"24.5") 9414(set-advertised-calling-convention 'report-emacs-bug '(topic) '"24.5")
9415(autoload 'emacs-build-description "emacsbug" "\
9416Insert a description of the current Emacs build in the current buffer." t)
9488(autoload 'submit-emacs-patch "emacsbug" "\ 9417(autoload 'submit-emacs-patch "emacsbug" "\
9489Send an Emacs patch to the Emacs maintainers. 9418Send an Emacs patch to the Emacs maintainers.
9490Interactively, you will be prompted for SUBJECT and a patch FILE 9419Interactively, you will be prompted for SUBJECT and a patch FILE
@@ -9492,7 +9421,7 @@ name (which will be attached to the mail). You will end up in a
9492Message buffer where you can explain more about the patch. 9421Message buffer where you can explain more about the patch.
9493 9422
9494(fn SUBJECT FILE)" t) 9423(fn SUBJECT FILE)" t)
9495(register-definition-prefixes "emacsbug" '("emacs-bug--system-description" "report-emacs-bug-")) 9424(register-definition-prefixes "emacsbug" '("report-emacs-bug-"))
9496 9425
9497 9426
9498;;; Generated autoloads from vc/emerge.el 9427;;; Generated autoloads from vc/emerge.el
@@ -16940,9 +16869,9 @@ should output the image in the current buffer, converted to
16940;;; Generated autoloads from image/image-crop.el 16869;;; Generated autoloads from image/image-crop.el
16941 16870
16942(autoload 'image-cut "image-crop" "\ 16871(autoload 'image-cut "image-crop" "\
16943Cut a rectangle from the image under point. 16872Cut a rectangle from the image under point, filling it with COLOR.
16944Interactively, if given a prefix, prompt for COLOR to use. 16873COLOR defaults to the value of `image-cut-color'.
16945Otherwise, default to `image-cut-color'. 16874Interactively, with prefix argument, prompt for COLOR to use.
16946 16875
16947(fn &optional COLOR)" t) 16876(fn &optional COLOR)" t)
16948(autoload 'image-crop "image-crop" "\ 16877(autoload 'image-crop "image-crop" "\
@@ -16968,7 +16897,7 @@ After cropping an image, you can save it by `M-x image-save' or
16968 16897
16969;;; Generated autoloads from image/image-dired.el 16898;;; Generated autoloads from image/image-dired.el
16970 16899
16971(push (purecopy '(image-dired 0 4 11)) package--builtin-versions) 16900(push (purecopy '(image-dired 0 5)) package--builtin-versions)
16972(autoload 'image-dired-dired-with-window-configuration "image-dired" "\ 16901(autoload 'image-dired-dired-with-window-configuration "image-dired" "\
16973Open directory DIR and create a default window configuration. 16902Open directory DIR and create a default window configuration.
16974 16903
@@ -17012,8 +16941,8 @@ thumbnail buffer to be selected.
17012(fn &optional ARG APPEND DO-NOT-POP)" '(nil dired-mode)) 16941(fn &optional ARG APPEND DO-NOT-POP)" '(nil dired-mode))
17013(autoload 'image-dired-show-all-from-dir "image-dired" "\ 16942(autoload 'image-dired-show-all-from-dir "image-dired" "\
17014Make a thumbnail buffer for all images in DIR and display it. 16943Make a thumbnail buffer for all images in DIR and display it.
17015Any file matching `image-file-name-regexp' is considered an image 16944Any file matching `image-dired--file-name-regexp' is considered an
17016file. 16945image file.
17017 16946
17018If the number of image files in DIR exceeds 16947If the number of image files in DIR exceeds
17019`image-dired-show-all-from-dir-max-files', ask for confirmation 16948`image-dired-show-all-from-dir-max-files', ask for confirmation
@@ -17044,10 +16973,30 @@ previous -ARG, if ARG<0) files.
17044(autoload 'image-dired-jump-thumbnail-buffer "image-dired-dired" "\ 16973(autoload 'image-dired-jump-thumbnail-buffer "image-dired-dired" "\
17045Jump to thumbnail buffer." '(dired-mode)) 16974Jump to thumbnail buffer." '(dired-mode))
17046(autoload 'image-dired-minor-mode "image-dired-dired" "\ 16975(autoload 'image-dired-minor-mode "image-dired-dired" "\
17047Setup easy-to-use keybindings for the commands to be used in Dired mode. 16976Setup easy-to-use keybindings for Image-Dired in Dired mode.
17048 16977
17049Note that n, p and <down> and <up> will be hijacked and bound to 16978This minor mode adds these additional bindings:
17050`image-dired-dired-next-line' and `image-dired-dired-previous-line'. 16979\\<image-dired-minor-mode-map>
16980 \\[image-dired-next-line-and-display] Move to next line and display thumbnail image.
16981 \\[image-dired-previous-line-and-display] Move to previous line and display thumbnail image.
16982 \\[image-dired-mark-and-display-next] Mark current file and display next thumbnail image.
16983 \\[image-dired-jump-thumbnail-buffer] Jump to thumbnail buffer.
16984
16985For reference, these are the default Image-Dired bindings that
16986are always available in Dired:
16987\\<dired-mode-map>
16988 \\[image-dired-display-thumbs] Display thumbnails of all marked files.
16989 \\[image-dired-tag-files] Tag marked file(s).
16990 \\[image-dired-delete-tag] Remove tag for selected file(s).
16991 \\[image-dired-jump-thumbnail-buffer] Jump to thumbnail buffer.
16992 \\[image-dired-dired-display-image] Display current image file.
16993 \\[image-dired-dired-display-external] Display file at point using an external viewer.
16994 \\[image-dired-display-thumbs-append] Append thumbnails to thumbnail buffer.
16995 \\[image-dired-display-thumb] Display thumbnails of all marked files.
16996 \\[image-dired-dired-comment-files] Add comment to current or marked files in Dired.
16997 \\[image-dired-mark-tagged-files] Use REGEXP to mark files with matching tag.
16998 \\[image-dired-dired-toggle-marked-thumbs] Toggle thumbnails in front of file names.
16999 \\[image-dired-dired-edit-comment-and-tags] Edit comment and tags of marked images.
17051 17000
17052This is a minor mode. If called interactively, toggle the 17001This is a minor mode. If called interactively, toggle the
17053`Image-Dired minor mode' mode. If the prefix argument is 17002`Image-Dired minor mode' mode. If the prefix argument is
@@ -18686,58 +18635,6 @@ sleep in seconds.
18686(register-definition-prefixes "life" '("life-")) 18635(register-definition-prefixes "life" '("life-"))
18687 18636
18688 18637
18689;;; Generated autoloads from linum.el
18690
18691(autoload 'linum-mode "linum" "\
18692Toggle display of line numbers in the left margin (Linum mode).
18693
18694This mode has been largely replaced by `display-line-numbers-mode'
18695(which is much faster and has fewer interaction problems with other
18696modes).
18697
18698Linum mode is a buffer-local minor mode.
18699
18700This is a minor mode. If called interactively, toggle the `Linum
18701mode' mode. If the prefix argument is positive, enable the mode,
18702and if it is zero or negative, disable the mode.
18703
18704If called from Lisp, toggle the mode if ARG is `toggle'. Enable
18705the mode if ARG is nil, omitted, or is a positive number.
18706Disable the mode if ARG is a negative number.
18707
18708To check whether the minor mode is enabled in the current buffer,
18709evaluate `linum-mode'.
18710
18711The mode's hook is called both when the mode is enabled and when
18712it is disabled.
18713
18714(fn &optional ARG)" t)
18715(put 'global-linum-mode 'globalized-minor-mode t)
18716(defvar global-linum-mode nil "\
18717Non-nil if Global Linum mode is enabled.
18718See the `global-linum-mode' command
18719for a description of this minor mode.
18720Setting this variable directly does not take effect;
18721either customize it (see the info node `Easy Customization')
18722or call the function `global-linum-mode'.")
18723(custom-autoload 'global-linum-mode "linum" nil)
18724(autoload 'global-linum-mode "linum" "\
18725Toggle Linum mode in all buffers.
18726With prefix ARG, enable Global Linum mode if ARG is positive;
18727otherwise, disable it.
18728
18729If called from Lisp, toggle the mode if ARG is `toggle'.
18730Enable the mode if ARG is nil, omitted, or is a positive number.
18731Disable the mode if ARG is a negative number.
18732
18733Linum mode is enabled in all buffers where `linum-on' would do it.
18734
18735See `linum-mode' for more information on Linum mode.
18736
18737(fn &optional ARG)" t)
18738(register-definition-prefixes "linum" '("linum-"))
18739
18740
18741;;; Generated autoloads from cedet/ede/linux.el 18638;;; Generated autoloads from cedet/ede/linux.el
18742 18639
18743(register-definition-prefixes "ede/linux" '("ede-linux-" "project-linux-")) 18640(register-definition-prefixes "ede/linux" '("ede-linux-" "project-linux-"))
@@ -20986,6 +20883,11 @@ it is disabled.
20986(register-definition-prefixes "mwheel" '("mouse-wheel-" "mwheel-")) 20883(register-definition-prefixes "mwheel" '("mouse-wheel-" "mwheel-"))
20987 20884
20988 20885
20886;;; Generated autoloads from emacs-lisp/nadvice.el
20887
20888(push (purecopy '(nadvice 1 0)) package--builtin-versions)
20889
20890
20989;;; Generated autoloads from net/net-utils.el 20891;;; Generated autoloads from net/net-utils.el
20990 20892
20991(autoload 'ifconfig "net-utils" "\ 20893(autoload 'ifconfig "net-utils" "\
@@ -22656,6 +22558,15 @@ The Git version of Org mode.
22656Inserted by installing Org or when a release is made.") 22558Inserted by installing Org or when a release is made.")
22657 22559
22658 22560
22561;;; Generated autoloads from osc.el
22562
22563(autoload 'osc-compilation-filter "osc" "\
22564Maybe collect OSC control sequences.
22565This function depends on the variable `osc-for-compilation-buffer',
22566and is meant to be used in `compilation-filter-hook'.")
22567(register-definition-prefixes "osc" '("osc-"))
22568
22569
22659;;; Generated autoloads from outline.el 22570;;; Generated autoloads from outline.el
22660 22571
22661(put 'outline-regexp 'safe-local-variable 'stringp) 22572(put 'outline-regexp 'safe-local-variable 'stringp)
@@ -26190,7 +26101,7 @@ Regexp to match Header fields that Rmail should display.
26190If nil, display all header fields except those matched by 26101If nil, display all header fields except those matched by
26191`rmail-ignored-headers'.") 26102`rmail-ignored-headers'.")
26192(custom-autoload 'rmail-displayed-headers "rmail" t) 26103(custom-autoload 'rmail-displayed-headers "rmail" t)
26193(defvar rmail-retry-ignored-headers (purecopy "^x-authentication-warning:\\|^x-detected-operating-system:\\|^x-spam[-a-z]*:\\|content-type:\\|content-transfer-encoding:\\|mime-version:\\|message-id:") "\ 26104(defvar rmail-retry-ignored-headers (concat "^x-authentication-warning:\\|^x-detected-operating-system:\\|" "^x-spam[-a-z]*:\\|^arc-.*:\\|" "^content-type:\\|^content-transfer-encoding:\\|" "^mime-version:\\|^message-id:\\|^x-google-smtp-source:\\|" "^x-received:\\|^received-spf:\\|" "^authentication-results:\\|^dkim-signature:") "\
26194Headers that should be stripped when retrying a failed message.") 26105Headers that should be stripped when retrying a failed message.")
26195(custom-autoload 'rmail-retry-ignored-headers "rmail" t) 26106(custom-autoload 'rmail-retry-ignored-headers "rmail" t)
26196(defvar rmail-highlighted-headers (purecopy "^From:\\|^Subject:") "\ 26107(defvar rmail-highlighted-headers (purecopy "^From:\\|^Subject:") "\
@@ -29627,6 +29538,10 @@ Studlify-case the current buffer." t)
29627 29538
29628;;; Generated autoloads from emacs-lisp/subr-x.el 29539;;; Generated autoloads from emacs-lisp/subr-x.el
29629 29540
29541(defsubst string-join (strings &optional separator) "\
29542Join all STRINGS using SEPARATOR.
29543Optional argument SEPARATOR must be a string, a vector, or a list of
29544characters; nil stands for the empty string." (mapconcat #'identity strings separator))
29630(autoload 'string-truncate-left "subr-x" "\ 29545(autoload 'string-truncate-left "subr-x" "\
29631If STRING is longer than LENGTH, return a truncated version. 29546If STRING is longer than LENGTH, return a truncated version.
29632When truncating, \"...\" is always prepended to the string, so 29547When truncating, \"...\" is always prepended to the string, so
@@ -31254,28 +31169,6 @@ Display a list of threads." t)
31254(register-definition-prefixes "thread" '("thread-list-")) 31169(register-definition-prefixes "thread" '("thread-list-"))
31255 31170
31256 31171
31257;;; Generated autoloads from thumbs.el
31258
31259(autoload 'thumbs-find-thumb "thumbs" "\
31260Display the thumbnail for IMG.
31261
31262(fn IMG)" t)
31263(autoload 'thumbs-show-from-dir "thumbs" "\
31264Make a preview buffer for all images in DIR.
31265Optional argument REG to select file matching a regexp,
31266and SAME-WINDOW to show thumbs in the same window.
31267
31268(fn DIR &optional REG SAME-WINDOW)" t)
31269(autoload 'thumbs-dired-show-marked "thumbs" "\
31270In dired, make a thumbs buffer with marked files." t)
31271(autoload 'thumbs-dired-show "thumbs" "\
31272In dired, make a thumbs buffer with all files in current directory." t)
31273(defalias 'thumbs 'thumbs-show-from-dir)
31274(autoload 'thumbs-dired-setroot "thumbs" "\
31275In dired, call the setroot program on the image at point." t)
31276(register-definition-prefixes "thumbs" '("thumbs-"))
31277
31278
31279;;; Generated autoloads from emacs-lisp/thunk.el 31172;;; Generated autoloads from emacs-lisp/thunk.el
31280 31173
31281(push (purecopy '(thunk 1 0)) package--builtin-versions) 31174(push (purecopy '(thunk 1 0)) package--builtin-versions)
@@ -33505,8 +33398,11 @@ with its diffs (if the underlying VCS supports that).
33505(fn &optional LIMIT REVISION)" t) 33398(fn &optional LIMIT REVISION)" t)
33506(autoload 'vc-print-branch-log "vc" "\ 33399(autoload 'vc-print-branch-log "vc" "\
33507Show the change log for BRANCH root in a window. 33400Show the change log for BRANCH root in a window.
33401Optional prefix ARG non-nil requests an opportunity for the user
33402to edit the VC shell command that will be run to generate the
33403log.
33508 33404
33509(fn BRANCH)" t) 33405(fn BRANCH &optional ARG)" t)
33510(autoload 'vc-log-incoming "vc" "\ 33406(autoload 'vc-log-incoming "vc" "\
33511Show log of changes that will be received with pull from REMOTE-LOCATION. 33407Show log of changes that will be received with pull from REMOTE-LOCATION.
33512When called interactively with a prefix argument, prompt for REMOTE-LOCATION. 33408When called interactively with a prefix argument, prompt for REMOTE-LOCATION.
@@ -33573,6 +33469,22 @@ On a non-distributed version control system, this signals an error.
33573It also signals an error in a Bazaar bound branch. 33469It also signals an error in a Bazaar bound branch.
33574 33470
33575(fn &optional ARG)" t) 33471(fn &optional ARG)" t)
33472(autoload 'vc-pull-and-push "vc" "\
33473First pull, and then push the current branch.
33474The push will only be performed if the pull operation was successful.
33475
33476You must be visiting a version controlled file, or in a `vc-dir' buffer.
33477
33478On a distributed version control system, this runs a \"pull\"
33479operation on the current branch, prompting for the precise
33480command if required. Optional prefix ARG non-nil forces a prompt
33481for the VCS command to run. If this is successful, a \"push\"
33482operation will then be done.
33483
33484On a non-distributed version control system, this signals an error.
33485It also signals an error in a Bazaar bound branch.
33486
33487(fn &optional ARG)" t)
33576(autoload 'vc-switch-backend "vc" "\ 33488(autoload 'vc-switch-backend "vc" "\
33577Make BACKEND the current version control system for FILE. 33489Make BACKEND the current version control system for FILE.
33578FILE must already be registered in BACKEND. The change is not 33490FILE must already be registered in BACKEND. The change is not
@@ -33740,6 +33652,10 @@ FILE-OR-LIST is the name of a working file; it may be a list of
33740files or be nil (to execute commands that don't expect a file 33652files or be nil (to execute commands that don't expect a file
33741name or set of files). If an optional list of FLAGS is present, 33653name or set of files). If an optional list of FLAGS is present,
33742that is inserted into the command line before the filename. 33654that is inserted into the command line before the filename.
33655
33656If `vc-want-edit-command-p' is non-nil, prompt the user to edit
33657COMMAND and FLAGS before execution.
33658
33743Return the return value of the slave command in the synchronous 33659Return the return value of the slave command in the synchronous
33744case, and the process object in the asynchronous case. 33660case, and the process object in the asynchronous case.
33745 33661
@@ -34916,6 +34832,18 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'." t)
34916 34832
34917;;; Generated autoloads from image/wallpaper.el 34833;;; Generated autoloads from image/wallpaper.el
34918 34834
34835(autoload 'wallpaper-set "wallpaper" "\
34836Set the desktop background to FILE in a graphical environment.
34837
34838On GNU/Linux and other Unix-like systems, this relies on an
34839external command. Which command to use is automatically detected
34840in most cases, but can be manually customized with the user
34841options `wallpaper-command' and `wallpaper-command-args'.
34842
34843On MS-Windows and Haiku systems, no external command is needed,
34844so the value of `wallpaper-commands' is ignored.
34845
34846(fn FILE)" t)
34919(register-definition-prefixes "wallpaper" '("wallpaper-")) 34847(register-definition-prefixes "wallpaper" '("wallpaper-"))
34920 34848
34921 34849