diff options
| author | Lars Ingebrigtsen | 2022-09-24 16:51:37 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2022-09-24 16:51:53 +0200 |
| commit | 0df73dabc1690b66eb62eac10ff62db1863b256e (patch) | |
| tree | d7ad0357929cac1a814362f8d77a261ec3f7f913 | |
| parent | b7fb82bc41b807545a369c5ee61de5a557927c7f (diff) | |
| download | emacs-0df73dabc1690b66eb62eac10ff62db1863b256e.tar.gz emacs-0df73dabc1690b66eb62eac10ff62db1863b256e.zip | |
Regenerated ldefs-boot.el
| -rw-r--r-- | lisp/ldefs-boot.el | 248 |
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" "\ | ||
| 4316 | Create a generic function NAME. | ||
| 4317 | DOC-STRING is the base documentation for this class. A generic | ||
| 4318 | function has no body, as its purpose is to decide which method body | ||
| 4319 | is appropriate to use. Specific methods are defined with `cl-defmethod'. | ||
| 4320 | With this implementation the ARGS are currently ignored. | ||
| 4321 | OPTIONS-AND-METHODS currently understands: | ||
| 4322 | - (:documentation DOCSTRING) | ||
| 4323 | - (declare DECLARATIONS) | ||
| 4324 | - (:argument-precedence-order &rest ARGS) | ||
| 4325 | - (:method [QUALIFIERS...] ARGS &rest BODY) | ||
| 4326 | DEFAULT-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" "\ | ||
| 4336 | Define a new method for generic function NAME. | ||
| 4337 | This defines an implementation of NAME to use for invocations | ||
| 4338 | of specific types of arguments. | ||
| 4339 | |||
| 4340 | ARGS is a list of dispatch arguments (see `cl-defun'), but where | ||
| 4341 | each variable element is either just a single variable name VAR, | ||
| 4342 | or a list on the form (VAR TYPE). | ||
| 4343 | |||
| 4344 | For instance: | ||
| 4345 | |||
| 4346 | (cl-defmethod foo (bar (format-string string) &optional zot) | ||
| 4347 | (format format-string bar)) | ||
| 4348 | |||
| 4349 | The dispatch arguments have to be among the mandatory arguments, and | ||
| 4350 | all methods of NAME have to use the same set of arguments for dispatch. | ||
| 4351 | Each dispatch argument and TYPE are specified in ARGS where the corresponding | ||
| 4352 | formal argument appears as (VAR TYPE) rather than just VAR. | ||
| 4353 | |||
| 4354 | The optional EXTRA element, on the form `:extra STRING', allows | ||
| 4355 | you to add more methods for the same specializers and qualifiers. | ||
| 4356 | These are distinguished by STRING. | ||
| 4357 | |||
| 4358 | The optional argument QUALIFIER is a specifier that modifies how | ||
| 4359 | the 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 | ||
| 4363 | The absence of QUALIFIER means this is a \"primary\" method. | ||
| 4364 | The set of acceptable qualifiers and their meaning is defined | ||
| 4365 | (and can be extended) by the methods of `cl-generic-combine-methods'. | ||
| 4366 | |||
| 4367 | ARGS can also include so-called context specializers, introduced by | ||
| 4368 | `&context' (which should appear right after the mandatory arguments, | ||
| 4369 | before any &optional or &rest). They have the form (EXPR TYPE) where | ||
| 4370 | EXPR is an Elisp expression whose value should match TYPE for the | ||
| 4371 | method to be applicable. | ||
| 4372 | |||
| 4373 | The 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" "\ | ||
| 9416 | Insert a description of the current Emacs build in the current buffer." t) | ||
| 9488 | (autoload 'submit-emacs-patch "emacsbug" "\ | 9417 | (autoload 'submit-emacs-patch "emacsbug" "\ |
| 9489 | Send an Emacs patch to the Emacs maintainers. | 9418 | Send an Emacs patch to the Emacs maintainers. |
| 9490 | Interactively, you will be prompted for SUBJECT and a patch FILE | 9419 | Interactively, 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 | |||
| 9492 | Message buffer where you can explain more about the patch. | 9421 | Message 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" "\ |
| 16943 | Cut a rectangle from the image under point. | 16872 | Cut a rectangle from the image under point, filling it with COLOR. |
| 16944 | Interactively, if given a prefix, prompt for COLOR to use. | 16873 | COLOR defaults to the value of `image-cut-color'. |
| 16945 | Otherwise, default to `image-cut-color'. | 16874 | Interactively, 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" "\ |
| 16973 | Open directory DIR and create a default window configuration. | 16902 | Open 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" "\ |
| 17014 | Make a thumbnail buffer for all images in DIR and display it. | 16943 | Make a thumbnail buffer for all images in DIR and display it. |
| 17015 | Any file matching `image-file-name-regexp' is considered an image | 16944 | Any file matching `image-dired--file-name-regexp' is considered an |
| 17016 | file. | 16945 | image file. |
| 17017 | 16946 | ||
| 17018 | If the number of image files in DIR exceeds | 16947 | If 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" "\ |
| 17045 | Jump to thumbnail buffer." '(dired-mode)) | 16974 | Jump to thumbnail buffer." '(dired-mode)) |
| 17046 | (autoload 'image-dired-minor-mode "image-dired-dired" "\ | 16975 | (autoload 'image-dired-minor-mode "image-dired-dired" "\ |
| 17047 | Setup easy-to-use keybindings for the commands to be used in Dired mode. | 16976 | Setup easy-to-use keybindings for Image-Dired in Dired mode. |
| 17048 | 16977 | ||
| 17049 | Note that n, p and <down> and <up> will be hijacked and bound to | 16978 | This 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 | |||
| 16985 | For reference, these are the default Image-Dired bindings that | ||
| 16986 | are 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 | ||
| 17052 | This is a minor mode. If called interactively, toggle the | 17001 | This 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" "\ | ||
| 18692 | Toggle display of line numbers in the left margin (Linum mode). | ||
| 18693 | |||
| 18694 | This mode has been largely replaced by `display-line-numbers-mode' | ||
| 18695 | (which is much faster and has fewer interaction problems with other | ||
| 18696 | modes). | ||
| 18697 | |||
| 18698 | Linum mode is a buffer-local minor mode. | ||
| 18699 | |||
| 18700 | This is a minor mode. If called interactively, toggle the `Linum | ||
| 18701 | mode' mode. If the prefix argument is positive, enable the mode, | ||
| 18702 | and if it is zero or negative, disable the mode. | ||
| 18703 | |||
| 18704 | If called from Lisp, toggle the mode if ARG is `toggle'. Enable | ||
| 18705 | the mode if ARG is nil, omitted, or is a positive number. | ||
| 18706 | Disable the mode if ARG is a negative number. | ||
| 18707 | |||
| 18708 | To check whether the minor mode is enabled in the current buffer, | ||
| 18709 | evaluate `linum-mode'. | ||
| 18710 | |||
| 18711 | The mode's hook is called both when the mode is enabled and when | ||
| 18712 | it is disabled. | ||
| 18713 | |||
| 18714 | (fn &optional ARG)" t) | ||
| 18715 | (put 'global-linum-mode 'globalized-minor-mode t) | ||
| 18716 | (defvar global-linum-mode nil "\ | ||
| 18717 | Non-nil if Global Linum mode is enabled. | ||
| 18718 | See the `global-linum-mode' command | ||
| 18719 | for a description of this minor mode. | ||
| 18720 | Setting this variable directly does not take effect; | ||
| 18721 | either customize it (see the info node `Easy Customization') | ||
| 18722 | or call the function `global-linum-mode'.") | ||
| 18723 | (custom-autoload 'global-linum-mode "linum" nil) | ||
| 18724 | (autoload 'global-linum-mode "linum" "\ | ||
| 18725 | Toggle Linum mode in all buffers. | ||
| 18726 | With prefix ARG, enable Global Linum mode if ARG is positive; | ||
| 18727 | otherwise, disable it. | ||
| 18728 | |||
| 18729 | If called from Lisp, toggle the mode if ARG is `toggle'. | ||
| 18730 | Enable the mode if ARG is nil, omitted, or is a positive number. | ||
| 18731 | Disable the mode if ARG is a negative number. | ||
| 18732 | |||
| 18733 | Linum mode is enabled in all buffers where `linum-on' would do it. | ||
| 18734 | |||
| 18735 | See `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. | |||
| 22656 | Inserted by installing Org or when a release is made.") | 22558 | Inserted 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" "\ | ||
| 22564 | Maybe collect OSC control sequences. | ||
| 22565 | This function depends on the variable `osc-for-compilation-buffer', | ||
| 22566 | and 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. | |||
| 26190 | If nil, display all header fields except those matched by | 26101 | If 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:") "\ |
| 26194 | Headers that should be stripped when retrying a failed message.") | 26105 | Headers 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) "\ | ||
| 29542 | Join all STRINGS using SEPARATOR. | ||
| 29543 | Optional argument SEPARATOR must be a string, a vector, or a list of | ||
| 29544 | characters; nil stands for the empty string." (mapconcat #'identity strings separator)) | ||
| 29630 | (autoload 'string-truncate-left "subr-x" "\ | 29545 | (autoload 'string-truncate-left "subr-x" "\ |
| 29631 | If STRING is longer than LENGTH, return a truncated version. | 29546 | If STRING is longer than LENGTH, return a truncated version. |
| 29632 | When truncating, \"...\" is always prepended to the string, so | 29547 | When 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" "\ | ||
| 31260 | Display the thumbnail for IMG. | ||
| 31261 | |||
| 31262 | (fn IMG)" t) | ||
| 31263 | (autoload 'thumbs-show-from-dir "thumbs" "\ | ||
| 31264 | Make a preview buffer for all images in DIR. | ||
| 31265 | Optional argument REG to select file matching a regexp, | ||
| 31266 | and 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" "\ | ||
| 31270 | In dired, make a thumbs buffer with marked files." t) | ||
| 31271 | (autoload 'thumbs-dired-show "thumbs" "\ | ||
| 31272 | In 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" "\ | ||
| 31275 | In 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" "\ |
| 33507 | Show the change log for BRANCH root in a window. | 33400 | Show the change log for BRANCH root in a window. |
| 33401 | Optional prefix ARG non-nil requests an opportunity for the user | ||
| 33402 | to edit the VC shell command that will be run to generate the | ||
| 33403 | log. | ||
| 33508 | 33404 | ||
| 33509 | (fn BRANCH)" t) | 33405 | (fn BRANCH &optional ARG)" t) |
| 33510 | (autoload 'vc-log-incoming "vc" "\ | 33406 | (autoload 'vc-log-incoming "vc" "\ |
| 33511 | Show log of changes that will be received with pull from REMOTE-LOCATION. | 33407 | Show log of changes that will be received with pull from REMOTE-LOCATION. |
| 33512 | When called interactively with a prefix argument, prompt for REMOTE-LOCATION. | 33408 | When 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. | |||
| 33573 | It also signals an error in a Bazaar bound branch. | 33469 | It 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" "\ | ||
| 33473 | First pull, and then push the current branch. | ||
| 33474 | The push will only be performed if the pull operation was successful. | ||
| 33475 | |||
| 33476 | You must be visiting a version controlled file, or in a `vc-dir' buffer. | ||
| 33477 | |||
| 33478 | On a distributed version control system, this runs a \"pull\" | ||
| 33479 | operation on the current branch, prompting for the precise | ||
| 33480 | command if required. Optional prefix ARG non-nil forces a prompt | ||
| 33481 | for the VCS command to run. If this is successful, a \"push\" | ||
| 33482 | operation will then be done. | ||
| 33483 | |||
| 33484 | On a non-distributed version control system, this signals an error. | ||
| 33485 | It 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" "\ |
| 33577 | Make BACKEND the current version control system for FILE. | 33489 | Make BACKEND the current version control system for FILE. |
| 33578 | FILE must already be registered in BACKEND. The change is not | 33490 | FILE 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 | |||
| 33740 | files or be nil (to execute commands that don't expect a file | 33652 | files or be nil (to execute commands that don't expect a file |
| 33741 | name or set of files). If an optional list of FLAGS is present, | 33653 | name or set of files). If an optional list of FLAGS is present, |
| 33742 | that is inserted into the command line before the filename. | 33654 | that is inserted into the command line before the filename. |
| 33655 | |||
| 33656 | If `vc-want-edit-command-p' is non-nil, prompt the user to edit | ||
| 33657 | COMMAND and FLAGS before execution. | ||
| 33658 | |||
| 33743 | Return the return value of the slave command in the synchronous | 33659 | Return the return value of the slave command in the synchronous |
| 33744 | case, and the process object in the asynchronous case. | 33660 | case, 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" "\ | ||
| 34836 | Set the desktop background to FILE in a graphical environment. | ||
| 34837 | |||
| 34838 | On GNU/Linux and other Unix-like systems, this relies on an | ||
| 34839 | external command. Which command to use is automatically detected | ||
| 34840 | in most cases, but can be manually customized with the user | ||
| 34841 | options `wallpaper-command' and `wallpaper-command-args'. | ||
| 34842 | |||
| 34843 | On MS-Windows and Haiku systems, no external command is needed, | ||
| 34844 | so 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 | ||