aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ldefs-boot.el115
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" "\
13080Log, at level LEVEL, the message MSG formatted with ARGS.
13081LEVEL is passed to `display-warning', which is used to display
13082the warning. If this form is included in a byte-compiled file,
13083the generated warning contains an indication of the file that
13084generated it.
13085
13086\(fn LEVEL MSG &rest ARGS)" nil t)
13087
13088(autoload 'flymake-make-diagnostic "flymake" "\
13089Make a Flymake diagnostic for BUFFER's region from BEG to END.
13090TYPE is a key to `flymake-diagnostic-types-alist' and TEXT is a
13091description of the problem detected in this region.
13092
13093\(fn BUFFER BEG END TYPE TEXT)" nil nil)
13094
13095(autoload 'flymake-diag-region "flymake" "\
13096Compute BUFFER's region (BEG . END) corresponding to LINE and COL.
13097If COL is nil, return a region just for LINE. Return nil if the
13098region is invalid.
13099
13100\(fn BUFFER LINE &optional COL)" nil nil)
13101
13079(autoload 'flymake-mode "flymake" "\ 13102(autoload 'flymake-mode "flymake" "\
13080Toggle Flymake mode on or off. 13103Toggle Flymake mode on or off.
13081With a prefix argument ARG, enable Flymake mode if ARG is 13104With a prefix argument ARG, enable Flymake mode if ARG is
13082positive, and disable it otherwise. If called from Lisp, enable 13105positive, and disable it otherwise. If called from Lisp, enable
13083the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. 13106the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'.
13084\\{flymake-mode-map} 13107
13108Flymake is an Emacs minor mode for on-the-fly syntax checking.
13109Flymake collects diagnostic information from multiple sources,
13110called backends, and visually annotates the buffer with the
13111results.
13112
13113Flymake performs these checks while the user is editing. The
13114customization variables `flymake-start-on-flymake-mode',
13115`flymake-no-changes-timeout' and
13116`flymake-start-syntax-check-on-newline' determine the exact
13117circumstances whereupon Flymake decides to initiate a check of
13118the buffer.
13119
13120The commands `flymake-goto-next-error' and
13121`flymake-goto-prev-error' can be used to navigate among Flymake
13122diagnostics annotated in the buffer.
13123
13124The visual appearance of each type of diagnostic can be changed
13125in the variable `flymake-diagnostic-types-alist'.
13126
13127Activation or deactivation of backends used by Flymake in each
13128buffer happens via the special hook
13129`flymake-diagnostic-functions'.
13130
13131Some backends may take longer than others to respond or complete,
13132and some may decide to disable themselves if they are not
13133suitable for the current buffer. The commands
13134`flymake-running-backends', `flymake-disabled-backends' and
13135`flymake-reporting-backends' summarize the situation, as does the
13136special *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" "\
13089Turn flymake mode on. 13141Turn 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" "\
13094Turn flymake mode off. 13146Turn 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" "\
14563Computes nnmail-split-fancy from group params and CATCH-ALL. 14619Computes nnmail-split-fancy from group params and CATCH-ALL.
14564It does this by calling by calling (gnus-group-split-fancy nil 14620It does this by calling (gnus-group-split-fancy nil nil CATCH-ALL).
14565nil CATCH-ALL).
14566 14621
14567If CATCH-ALL is nil, `gnus-group-split-default-catch-all-group' is used 14622If CATCH-ALL is nil, `gnus-group-split-default-catch-all-group' is used
14568instead. This variable is set by `gnus-group-split-setup'. 14623instead. 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" "\
28121Ask user a multiple choice question.
28122PROMPT should be a string that will be displayed as the prompt.
28123
28124CHOICES is an alist where the first element in each entry is a
28125character to be entered, the second element is a short name for
28126the entry to be displayed while prompting (if there's room, it
28127might be shortened), and the third, optional entry is a longer
28128explanation that will be displayed in a help buffer if the user
28129requests more help.
28130
28131This function translates user input into responses by consulting
28132the bindings in `query-replace-map'; see the documentation of
28133that variable for more information. In this case, the useful
28134bindings are `recenter', `scroll-up', and `scroll-down'. If the
28135user enters `recenter', `scroll-up', or `scroll-down' responses,
28136perform the requested window recentering or scrolling and ask
28137again.
28138
28139When `use-dialog-box' is t (the default), this function can pop
28140up a dialog window to collect the user input. That functionality
28141requires `display-popup-menus-p' to return t. Otherwise, a text
28142dialog will be used.
28143
28144The return value is the matching entry from the CHOICES list.
28145
28146Usage 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