diff options
| -rw-r--r-- | lisp/ldefs-boot.el | 115 |
1 files changed, 105 insertions, 10 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 9c057231df6..8a856c4ee0b 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -13076,31 +13076,87 @@ to get the effect of a C-q. | |||
| 13076 | ;;; Generated autoloads from progmodes/flymake.el | 13076 | ;;; Generated autoloads from progmodes/flymake.el |
| 13077 | (push (purecopy '(flymake 0 3)) package--builtin-versions) | 13077 | (push (purecopy '(flymake 0 3)) package--builtin-versions) |
| 13078 | 13078 | ||
| 13079 | (autoload 'flymake-log "flymake" "\ | ||
| 13080 | Log, at level LEVEL, the message MSG formatted with ARGS. | ||
| 13081 | LEVEL is passed to `display-warning', which is used to display | ||
| 13082 | the warning. If this form is included in a byte-compiled file, | ||
| 13083 | the generated warning contains an indication of the file that | ||
| 13084 | generated it. | ||
| 13085 | |||
| 13086 | \(fn LEVEL MSG &rest ARGS)" nil t) | ||
| 13087 | |||
| 13088 | (autoload 'flymake-make-diagnostic "flymake" "\ | ||
| 13089 | Make a Flymake diagnostic for BUFFER's region from BEG to END. | ||
| 13090 | TYPE is a key to `flymake-diagnostic-types-alist' and TEXT is a | ||
| 13091 | description of the problem detected in this region. | ||
| 13092 | |||
| 13093 | \(fn BUFFER BEG END TYPE TEXT)" nil nil) | ||
| 13094 | |||
| 13095 | (autoload 'flymake-diag-region "flymake" "\ | ||
| 13096 | Compute BUFFER's region (BEG . END) corresponding to LINE and COL. | ||
| 13097 | If COL is nil, return a region just for LINE. Return nil if the | ||
| 13098 | region is invalid. | ||
| 13099 | |||
| 13100 | \(fn BUFFER LINE &optional COL)" nil nil) | ||
| 13101 | |||
| 13079 | (autoload 'flymake-mode "flymake" "\ | 13102 | (autoload 'flymake-mode "flymake" "\ |
| 13080 | Toggle Flymake mode on or off. | 13103 | Toggle Flymake mode on or off. |
| 13081 | With a prefix argument ARG, enable Flymake mode if ARG is | 13104 | With a prefix argument ARG, enable Flymake mode if ARG is |
| 13082 | positive, and disable it otherwise. If called from Lisp, enable | 13105 | positive, and disable it otherwise. If called from Lisp, enable |
| 13083 | the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. | 13106 | the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. |
| 13084 | \\{flymake-mode-map} | 13107 | |
| 13108 | Flymake is an Emacs minor mode for on-the-fly syntax checking. | ||
| 13109 | Flymake collects diagnostic information from multiple sources, | ||
| 13110 | called backends, and visually annotates the buffer with the | ||
| 13111 | results. | ||
| 13112 | |||
| 13113 | Flymake performs these checks while the user is editing. The | ||
| 13114 | customization variables `flymake-start-on-flymake-mode', | ||
| 13115 | `flymake-no-changes-timeout' and | ||
| 13116 | `flymake-start-syntax-check-on-newline' determine the exact | ||
| 13117 | circumstances whereupon Flymake decides to initiate a check of | ||
| 13118 | the buffer. | ||
| 13119 | |||
| 13120 | The commands `flymake-goto-next-error' and | ||
| 13121 | `flymake-goto-prev-error' can be used to navigate among Flymake | ||
| 13122 | diagnostics annotated in the buffer. | ||
| 13123 | |||
| 13124 | The visual appearance of each type of diagnostic can be changed | ||
| 13125 | in the variable `flymake-diagnostic-types-alist'. | ||
| 13126 | |||
| 13127 | Activation or deactivation of backends used by Flymake in each | ||
| 13128 | buffer happens via the special hook | ||
| 13129 | `flymake-diagnostic-functions'. | ||
| 13130 | |||
| 13131 | Some backends may take longer than others to respond or complete, | ||
| 13132 | and some may decide to disable themselves if they are not | ||
| 13133 | suitable for the current buffer. The commands | ||
| 13134 | `flymake-running-backends', `flymake-disabled-backends' and | ||
| 13135 | `flymake-reporting-backends' summarize the situation, as does the | ||
| 13136 | special *Flymake log* buffer. | ||
| 13085 | 13137 | ||
| 13086 | \(fn &optional ARG)" t nil) | 13138 | \(fn &optional ARG)" t nil) |
| 13087 | 13139 | ||
| 13088 | (autoload 'flymake-mode-on "flymake" "\ | 13140 | (autoload 'flymake-mode-on "flymake" "\ |
| 13089 | Turn flymake mode on. | 13141 | Turn Flymake mode on. |
| 13090 | 13142 | ||
| 13091 | \(fn)" nil nil) | 13143 | \(fn)" nil nil) |
| 13092 | 13144 | ||
| 13093 | (autoload 'flymake-mode-off "flymake" "\ | 13145 | (autoload 'flymake-mode-off "flymake" "\ |
| 13094 | Turn flymake mode off. | 13146 | Turn Flymake mode off. |
| 13095 | 13147 | ||
| 13096 | \(fn)" nil nil) | 13148 | \(fn)" nil nil) |
| 13097 | 13149 | ||
| 13098 | (autoload 'flymake-find-file-hook "flymake" "\ | 13150 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flymake" '("flymake-"))) |
| 13099 | |||
| 13100 | 13151 | ||
| 13101 | \(fn)" nil nil) | 13152 | ;;;*** |
| 13153 | |||
| 13154 | ;;;### (autoloads nil "flymake-proc" "progmodes/flymake-proc.el" | ||
| 13155 | ;;;;;; (0 0 0 0)) | ||
| 13156 | ;;; Generated autoloads from progmodes/flymake-proc.el | ||
| 13157 | (push (purecopy '(flymake-proc 0 3)) package--builtin-versions) | ||
| 13102 | 13158 | ||
| 13103 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flymake" '("flymake-"))) | 13159 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flymake-proc" '("flymake-proc-"))) |
| 13104 | 13160 | ||
| 13105 | ;;;*** | 13161 | ;;;*** |
| 13106 | 13162 | ||
| @@ -14561,8 +14617,7 @@ match any of the group-specified splitting rules. See | |||
| 14561 | 14617 | ||
| 14562 | (autoload 'gnus-group-split-update "gnus-mlspl" "\ | 14618 | (autoload 'gnus-group-split-update "gnus-mlspl" "\ |
| 14563 | Computes nnmail-split-fancy from group params and CATCH-ALL. | 14619 | Computes nnmail-split-fancy from group params and CATCH-ALL. |
| 14564 | It does this by calling by calling (gnus-group-split-fancy nil | 14620 | It does this by calling (gnus-group-split-fancy nil nil CATCH-ALL). |
| 14565 | nil CATCH-ALL). | ||
| 14566 | 14621 | ||
| 14567 | If CATCH-ALL is nil, `gnus-group-split-default-catch-all-group' is used | 14622 | If CATCH-ALL is nil, `gnus-group-split-default-catch-all-group' is used |
| 14568 | instead. This variable is set by `gnus-group-split-setup'. | 14623 | instead. This variable is set by `gnus-group-split-setup'. |
| @@ -28059,6 +28114,46 @@ than appending to it. Deletes the message after writing if | |||
| 28059 | 28114 | ||
| 28060 | ;;;*** | 28115 | ;;;*** |
| 28061 | 28116 | ||
| 28117 | ;;;### (autoloads nil "rmc" "emacs-lisp/rmc.el" (0 0 0 0)) | ||
| 28118 | ;;; Generated autoloads from emacs-lisp/rmc.el | ||
| 28119 | |||
| 28120 | (autoload 'read-multiple-choice "rmc" "\ | ||
| 28121 | Ask user a multiple choice question. | ||
| 28122 | PROMPT should be a string that will be displayed as the prompt. | ||
| 28123 | |||
| 28124 | CHOICES is an alist where the first element in each entry is a | ||
| 28125 | character to be entered, the second element is a short name for | ||
| 28126 | the entry to be displayed while prompting (if there's room, it | ||
| 28127 | might be shortened), and the third, optional entry is a longer | ||
| 28128 | explanation that will be displayed in a help buffer if the user | ||
| 28129 | requests more help. | ||
| 28130 | |||
| 28131 | This function translates user input into responses by consulting | ||
| 28132 | the bindings in `query-replace-map'; see the documentation of | ||
| 28133 | that variable for more information. In this case, the useful | ||
| 28134 | bindings are `recenter', `scroll-up', and `scroll-down'. If the | ||
| 28135 | user enters `recenter', `scroll-up', or `scroll-down' responses, | ||
| 28136 | perform the requested window recentering or scrolling and ask | ||
| 28137 | again. | ||
| 28138 | |||
| 28139 | When `use-dialog-box' is t (the default), this function can pop | ||
| 28140 | up a dialog window to collect the user input. That functionality | ||
| 28141 | requires `display-popup-menus-p' to return t. Otherwise, a text | ||
| 28142 | dialog will be used. | ||
| 28143 | |||
| 28144 | The return value is the matching entry from the CHOICES list. | ||
| 28145 | |||
| 28146 | Usage example: | ||
| 28147 | |||
| 28148 | \(read-multiple-choice \"Continue connecting?\" | ||
| 28149 | \\='((?a \"always\") | ||
| 28150 | (?s \"session only\") | ||
| 28151 | (?n \"no\"))) | ||
| 28152 | |||
| 28153 | \(fn PROMPT CHOICES)" nil nil) | ||
| 28154 | |||
| 28155 | ;;;*** | ||
| 28156 | |||
| 28062 | ;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (0 0 0 0)) | 28157 | ;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (0 0 0 0)) |
| 28063 | ;;; Generated autoloads from nxml/rng-cmpct.el | 28158 | ;;; Generated autoloads from nxml/rng-cmpct.el |
| 28064 | 28159 | ||
| @@ -31903,7 +31998,7 @@ Studlify-case the current buffer. | |||
| 31903 | ;;;### (autoloads nil "subr-x" "emacs-lisp/subr-x.el" (0 0 0 0)) | 31998 | ;;;### (autoloads nil "subr-x" "emacs-lisp/subr-x.el" (0 0 0 0)) |
| 31904 | ;;; Generated autoloads from emacs-lisp/subr-x.el | 31999 | ;;; Generated autoloads from emacs-lisp/subr-x.el |
| 31905 | 32000 | ||
| 31906 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "subr-x" '("read-multiple-choice" "string-" "hash-table-" "when-let" "internal--" "if-let" "and-let*" "thread-"))) | 32001 | (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "subr-x" '("string-" "hash-table-" "when-let" "internal--" "if-let" "and-let*" "thread-"))) |
| 31907 | 32002 | ||
| 31908 | ;;;*** | 32003 | ;;;*** |
| 31909 | 32004 | ||