From: Eshel Yaron Date: Tue, 9 Jul 2024 18:26:01 +0000 (+0200) Subject: ; Update ldefs-boot.el X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=75b553008ffc6897df46aee5665b331316ab7ae3;p=emacs.git ; Update ldefs-boot.el --- diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 667ad7f0acc..e7f1e55ea9e 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -2437,7 +2437,7 @@ BOOKMARK is usually a bookmark name (a string). It can also be a bookmark record, but this is usually only done by programmatic callers. If DISPLAY-FUNC is non-nil, it is a function to invoke to display the -bookmark. It defaults to `pop-to-buffer-same-window'. A typical value for +bookmark. It defaults to `switch-to-buffer'. A typical value for DISPLAY-FUNC would be `switch-to-buffer-other-window'. (fn BOOKMARK &optional DISPLAY-FUNC)" t) @@ -4451,7 +4451,7 @@ Optional argument TAKE-NOTES causes all errors to be logged. Evaluate the current form with `eval-defun' and check its documentation. Evaluation is done first so the form will be read before the documentation is checked. If there is a documentation error, then the display -of what was evaluated will be overwritten by the diagnostic message." t) +of what was evaluated will be overwritten by the diagnostic message." '(emacs-lisp-mode)) (autoload 'checkdoc-defun "checkdoc" "\ Examine the doc string of the function or variable under point. Call `error' if the doc string has problems. If NO-ERROR is @@ -4459,7 +4459,7 @@ non-nil, then do not call error, but call `message' instead. If the doc string passes the test, then check the function for rogue white space at the end of each line. -(fn &optional NO-ERROR)" t) +(fn &optional NO-ERROR)" '(emacs-lisp-mode)) (autoload 'checkdoc-dired "checkdoc" "\ In Dired, run `checkdoc' on marked files. Skip anything that doesn't have the Emacs Lisp library file @@ -4528,7 +4528,7 @@ disabled. (fn &optional ARG)" t) (autoload 'checkdoc-package-keywords "checkdoc" "\ -Find package keywords that aren't in `finder-known-keywords'." t) +Find package keywords that aren't in `finder-known-keywords'." '(emacs-lisp-mode)) (register-definition-prefixes "checkdoc" '("checkdoc-")) @@ -13805,8 +13805,8 @@ Read news as a child unplugged. (autoload 'gnus-agentize "gnus-agent" "\ Allow Gnus to be an offline newsreader. -The gnus-agentize function is now called internally by gnus when -gnus-agent is set. If you wish to avoid calling gnus-agentize, +The `gnus-agentize' function is now called internally by gnus when +`gnus-agent' is set. If you wish to avoid calling `gnus-agentize', customize `gnus-agent' to nil. This will modify the `gnus-setup-news-hook', and @@ -18014,12 +18014,6 @@ Display the \"Reporting Bugs\" section of the Emacs manual in Info mode." t) Run Emacs as a standalone Info reader. Usage: emacs -f info-standalone [filename] In standalone mode, \\\\[quit-window] exits Emacs itself.") -(autoload 'Info-on-current-buffer "info" "\ -Use Info mode to browse the current Info buffer. -With a prefix arg, this queries for the node name to visit first; -otherwise, that defaults to `Top'. - -(fn &optional NODENAME)" t) (autoload 'Info-directory "info" "\ Go to the Info directory node." t) (autoload 'Info-index "info" "\ @@ -19614,6 +19608,50 @@ and then select the region of un-tablified names and use (define-key ctl-x-map "q" 'kbd-macro-query) (register-definition-prefixes "macros" '("macros--insert-vector-macro")) + +;;; Generated autoloads from emacs-lisp/macrostep.el + +(autoload 'macrostep-mode "macrostep" "\ +Minor mode for inline expansion of macros in Emacs Lisp source buffers. + +\\Progressively expand macro forms with \\[macrostep-expand], collapse them with \\[macrostep-collapse], +and move back and forth with \\[macrostep-next-macro] and \\[macrostep-prev-macro]. Use \\[macrostep-collapse-all] or collapse all +visible expansions to quit and return to normal editing. + +\\{macrostep-mode-map} + +This is a minor mode. If called interactively, toggle the `Macrostep +mode' mode. If the prefix argument is positive, enable the mode, and if +it is zero or negative, disable the mode. + +If called from Lisp, toggle the mode if ARG is `toggle'. Enable the +mode if ARG is nil, omitted, or is a positive number. Disable the mode +if ARG is a negative number. + +To check whether the minor mode is enabled in the current buffer, +evaluate `macrostep-mode'. + +The mode's hook is called both when the mode is enabled and when it is +disabled. + +(fn &optional ARG)" t) +(autoload 'macrostep-expand "macrostep" "\ +Expand the macro form following point by one step. + +Enters `macrostep-mode' if it is not already active, making the +buffer temporarily read-only. If `macrostep-mode' is active and +the form following point is not a macro form, search forward in +the buffer and expand the next macro form found, if any. + +If optional argument TOGGLE-SEPARATE-BUFFER is non-nil (or set + with a prefix argument), the expansion is displayed in a + separate buffer instead of inline in the current buffer. + Setting `macrostep-expand-in-separate-buffer' to non-nil swaps + these two behaviors. + +(fn &optional TOGGLE-SEPARATE-BUFFER)" t) +(register-definition-prefixes "macrostep" '("macrostep-")) + ;;; Generated autoloads from mail/mail-extr.el @@ -20401,8 +20439,8 @@ the MH mail system. (fn &optional ARG)" t) (autoload 'mh-folder-mode "mh-folder" "\ -Major MH-E mode for \"editing\" an MH folder scan listing.\\ - +Major MH-E mode for \"editing\" an MH folder scan listing. +\\ You can show the message the cursor is pointing to, and step through the messages. Messages can be marked for deletion or refiling into another folder; these commands are executed all at once with a @@ -23756,7 +23794,8 @@ See `decode-time' for the meaning of FORM. ;;; Generated autoloads from progmodes/pascal.el (autoload 'pascal-mode "pascal" "\ -Major mode for editing Pascal code.\\ +Major mode for editing Pascal code. +\\ TAB indents for Pascal code. Delete converts tabs to spaces as it moves back. \\[completion-at-point] completes the word around current point with respect to position in code @@ -23790,7 +23829,7 @@ Variables controlling indentation/edit style: regardless of where in the line point is when the TAB command is used. `pascal-auto-endcomments' (default t) Non-nil means a comment { ... } is set after the ends which ends cases and - functions. The name of the function or case will be set between the braces. + functions. The name of the function or case will be set between the braces. `pascal-auto-lineup' (default t) List of contexts where auto lineup of :'s or ='s should be done. @@ -28264,8 +28303,8 @@ This also saves the value of `send-mail-function' via Customize.") Major mode for editing mail to be sent. Like Text Mode but with these additional commands: -\\[mail-send] mail-send (send the message) -\\[mail-send-and-exit] mail-send-and-exit (send the message and exit) +\\[mail-send] `mail-send' (send the message) +\\[mail-send-and-exit] `mail-send-and-exit' (send the message and exit) Here are commands that move to a header field (and create it if there isn't): \\[mail-to] move to To: \\[mail-subject] move to Subj: @@ -28274,9 +28313,9 @@ Here are commands that move to a header field (and create it if there isn't): \\[mail-mail-reply-to] move to Mail-Reply-To: \\[mail-mail-followup-to] move to Mail-Followup-To: \\[mail-text] move to message text. -\\[mail-signature] mail-signature (insert `mail-signature-file' file). -\\[mail-yank-original] mail-yank-original (insert current message, in Rmail). -\\[mail-fill-yanked-message] mail-fill-yanked-message (fill what was yanked). +\\[mail-signature] `mail-signature' (insert `mail-signature-file' file). +\\[mail-yank-original] `mail-yank-original' (insert current message, in Rmail). +\\[mail-fill-yanked-message] `mail-fill-yanked-message' (fill what was yanked). \\[mail-insert-file] insert a text file into the message. \\[mail-add-attachment] attach to the message a file as binary attachment. Turning on Mail mode runs the normal hooks `text-mode-hook' and @@ -30768,8 +30807,8 @@ first cell. |-!- | | | +-----+-----+-----+ -Inside a table cell, there are special key bindings. \\ - +Inside a table cell, there are special key bindings. +\\ M-9 \\[table-widen-cell] (or \\[universal-argument] 9 \\[table-widen-cell]) widens the first cell by 9 character width, which results as @@ -30778,7 +30817,7 @@ width, which results as +--------------+-----+-----+ Type TAB \\[table-widen-cell] then type TAB M-2 M-7 \\[table-widen-cell] (or \\[universal-argument] 2 7 \\[table-widen-cell]). Typing -TAB moves the point forward by a cell. The result now looks like this: +TAB moves the point forward by a cell. The result now looks like this: +--------------+------+--------------------------------+ | | |-!- | @@ -32963,7 +33002,7 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar ;;; Generated autoloads from net/trampver.el -(push (purecopy '(tramp 2 7 1)) package--builtin-versions) +(push (purecopy '(tramp 2 7 2 -1)) package--builtin-versions) (register-definition-prefixes "trampver" '("tramp-")) @@ -33426,7 +33465,7 @@ URL-encoded before it's used. (autoload 'url-retrieve-synchronously "url" "\ Retrieve URL synchronously. Return the buffer containing the data, or nil if there are no data -associated with it (the case for dired, info, or mailto URLs that need +associated with it (the case for Dired, info, or mailto URLs that need no further processing). URL is either a string or a parsed URL. If SILENT is non-nil, don't do any messaging while retrieving.