diff options
| author | Eli Zaretskii | 2024-07-27 05:11:20 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2024-07-27 05:11:20 -0400 |
| commit | 156a3ba4f9ef9f7a401cfd3ca118152169f0ddcf (patch) | |
| tree | 88504750876acfeac555f0821b8ab4b3d2e978f1 | |
| parent | c3c27a919c2b4552da672391606ab336a5783d35 (diff) | |
| download | emacs-156a3ba4f9ef9f7a401cfd3ca118152169f0ddcf.tar.gz emacs-156a3ba4f9ef9f7a401cfd3ca118152169f0ddcf.zip | |
; Auto-commit of loaddefs files.
| -rw-r--r-- | lisp/ldefs-boot.el | 572 |
1 files changed, 458 insertions, 114 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index ab791da3271..6320af1e79f 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -760,7 +760,7 @@ for details on preparing Emacs for automatic allout activation. | |||
| 760 | 760 | ||
| 761 | (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) | 761 | (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) |
| 762 | (autoload 'allout-widgets-setup "allout-widgets" "\ | 762 | (autoload 'allout-widgets-setup "allout-widgets" "\ |
| 763 | Commission or decommission allout-widgets-mode along with allout-mode. | 763 | Commission or decommission `allout-widgets-mode' along with `allout-mode'. |
| 764 | 764 | ||
| 765 | Meant to be used by customization of `allout-widgets-auto-activation'. | 765 | Meant to be used by customization of `allout-widgets-auto-activation'. |
| 766 | 766 | ||
| @@ -1554,7 +1554,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 1554 | if ARG is a negative number. | 1554 | if ARG is a negative number. |
| 1555 | 1555 | ||
| 1556 | To check whether the minor mode is enabled in the current buffer, | 1556 | To check whether the minor mode is enabled in the current buffer, |
| 1557 | evaluate `(default-value \\='auto-insert-mode)'. | 1557 | evaluate the variable `(default-value \\='auto-insert-mode)'. |
| 1558 | 1558 | ||
| 1559 | The mode's hook is called both when the mode is enabled and when it is | 1559 | The mode's hook is called both when the mode is enabled and when it is |
| 1560 | disabled. | 1560 | disabled. |
| @@ -2949,7 +2949,7 @@ and corresponding effects. | |||
| 2949 | 2949 | ||
| 2950 | ;;; Generated autoloads from progmodes/c-ts-common.el | 2950 | ;;; Generated autoloads from progmodes/c-ts-common.el |
| 2951 | 2951 | ||
| 2952 | (register-definition-prefixes "c-ts-common" '("c-ts-common-")) | 2952 | (register-definition-prefixes "c-ts-common" '("c-ts-")) |
| 2953 | 2953 | ||
| 2954 | 2954 | ||
| 2955 | ;;; Generated autoloads from progmodes/c-ts-mode.el | 2955 | ;;; Generated autoloads from progmodes/c-ts-mode.el |
| @@ -4247,6 +4247,7 @@ Returns non-nil if any false statements are found. | |||
| 4247 | (put 'checkdoc-spellcheck-documentation-flag 'safe-local-variable #'booleanp) | 4247 | (put 'checkdoc-spellcheck-documentation-flag 'safe-local-variable #'booleanp) |
| 4248 | (put 'checkdoc-ispell-list-words 'safe-local-variable #'list-of-strings-p) | 4248 | (put 'checkdoc-ispell-list-words 'safe-local-variable #'list-of-strings-p) |
| 4249 | (put 'checkdoc-arguments-in-order-flag 'safe-local-variable #'booleanp) | 4249 | (put 'checkdoc-arguments-in-order-flag 'safe-local-variable #'booleanp) |
| 4250 | (put 'checkdoc-package-keywords-flag 'safe-local-variable #'booleanp) | ||
| 4250 | (put 'checkdoc-verb-check-experimental-flag 'safe-local-variable #'booleanp) | 4251 | (put 'checkdoc-verb-check-experimental-flag 'safe-local-variable #'booleanp) |
| 4251 | (put 'checkdoc-symbol-words 'safe-local-variable #'list-of-strings-p) | 4252 | (put 'checkdoc-symbol-words 'safe-local-variable #'list-of-strings-p) |
| 4252 | (put 'checkdoc-proper-noun-regexp 'safe-local-variable 'stringp) | 4253 | (put 'checkdoc-proper-noun-regexp 'safe-local-variable 'stringp) |
| @@ -4329,7 +4330,7 @@ Optional argument TAKE-NOTES causes all errors to be logged. | |||
| 4329 | Evaluate the current form with `eval-defun' and check its documentation. | 4330 | Evaluate the current form with `eval-defun' and check its documentation. |
| 4330 | Evaluation is done first so the form will be read before the | 4331 | Evaluation is done first so the form will be read before the |
| 4331 | documentation is checked. If there is a documentation error, then the display | 4332 | documentation is checked. If there is a documentation error, then the display |
| 4332 | of what was evaluated will be overwritten by the diagnostic message." t) | 4333 | of what was evaluated will be overwritten by the diagnostic message." '(emacs-lisp-mode)) |
| 4333 | (autoload 'checkdoc-defun "checkdoc" "\ | 4334 | (autoload 'checkdoc-defun "checkdoc" "\ |
| 4334 | Examine the doc string of the function or variable under point. | 4335 | Examine the doc string of the function or variable under point. |
| 4335 | Call `error' if the doc string has problems. If NO-ERROR is | 4336 | Call `error' if the doc string has problems. If NO-ERROR is |
| @@ -4337,7 +4338,7 @@ non-nil, then do not call error, but call `message' instead. | |||
| 4337 | If the doc string passes the test, then check the function for rogue white | 4338 | If the doc string passes the test, then check the function for rogue white |
| 4338 | space at the end of each line. | 4339 | space at the end of each line. |
| 4339 | 4340 | ||
| 4340 | (fn &optional NO-ERROR)" t) | 4341 | (fn &optional NO-ERROR)" '(emacs-lisp-mode)) |
| 4341 | (autoload 'checkdoc-dired "checkdoc" "\ | 4342 | (autoload 'checkdoc-dired "checkdoc" "\ |
| 4342 | In Dired, run `checkdoc' on marked files. | 4343 | In Dired, run `checkdoc' on marked files. |
| 4343 | Skip anything that doesn't have the Emacs Lisp library file | 4344 | Skip anything that doesn't have the Emacs Lisp library file |
| @@ -4399,14 +4400,14 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 4399 | if ARG is a negative number. | 4400 | if ARG is a negative number. |
| 4400 | 4401 | ||
| 4401 | To check whether the minor mode is enabled in the current buffer, | 4402 | To check whether the minor mode is enabled in the current buffer, |
| 4402 | evaluate `checkdoc-minor-mode'. | 4403 | evaluate the variable `checkdoc-minor-mode'. |
| 4403 | 4404 | ||
| 4404 | The mode's hook is called both when the mode is enabled and when it is | 4405 | The mode's hook is called both when the mode is enabled and when it is |
| 4405 | disabled. | 4406 | disabled. |
| 4406 | 4407 | ||
| 4407 | (fn &optional ARG)" t) | 4408 | (fn &optional ARG)" t) |
| 4408 | (autoload 'checkdoc-package-keywords "checkdoc" "\ | 4409 | (autoload 'checkdoc-package-keywords "checkdoc" "\ |
| 4409 | Find package keywords that aren't in `finder-known-keywords'." t) | 4410 | Find package keywords that aren't in `finder-known-keywords'." '(emacs-lisp-mode)) |
| 4410 | (register-definition-prefixes "checkdoc" '("checkdoc-")) | 4411 | (register-definition-prefixes "checkdoc" '("checkdoc-")) |
| 4411 | 4412 | ||
| 4412 | 4413 | ||
| @@ -4889,14 +4890,13 @@ Search happens in `native-comp-eln-load-path'. | |||
| 4889 | (fn FILENAME)") | 4890 | (fn FILENAME)") |
| 4890 | (autoload 'native-compile "comp" "\ | 4891 | (autoload 'native-compile "comp" "\ |
| 4891 | Compile FUNCTION-OR-FILE into native code. | 4892 | Compile FUNCTION-OR-FILE into native code. |
| 4892 | This is the synchronous entry-point for the Emacs Lisp native | 4893 | This is the synchronous entry-point for the Emacs Lisp native compiler. |
| 4893 | compiler. FUNCTION-OR-FILE is a function symbol, a form, or the | 4894 | FUNCTION-OR-FILE is a function symbol, a form, an interpreted-function, |
| 4894 | filename of an Emacs Lisp source file. If OUTPUT is non-nil, use | 4895 | or the filename of an Emacs Lisp source file. If OUTPUT is non-nil, use |
| 4895 | it as the filename for the compiled object. If FUNCTION-OR-FILE | 4896 | it as the filename for the compiled object. If FUNCTION-OR-FILE is a |
| 4896 | is a filename, if the compilation was successful return the | 4897 | filename, if the compilation was successful return the filename of the |
| 4897 | filename of the compiled object. If FUNCTION-OR-FILE is a | 4898 | compiled object. If FUNCTION-OR-FILE is a function symbol or a form, if |
| 4898 | function symbol or a form, if the compilation was successful | 4899 | the compilation was successful return the compiled function. |
| 4899 | return the compiled function. | ||
| 4900 | 4900 | ||
| 4901 | (fn FUNCTION-OR-FILE &optional OUTPUT)") | 4901 | (fn FUNCTION-OR-FILE &optional OUTPUT)") |
| 4902 | (function-put 'native-compile 'function-type '(function ((or string symbol) &optional string) (or native-comp-function string))) | 4902 | (function-put 'native-compile 'function-type '(function ((or string symbol) &optional string) (or native-comp-function string))) |
| @@ -6716,7 +6716,6 @@ Variables controlling indentation style and extra features: | |||
| 6716 | dcl-imenu-label-call | 6716 | dcl-imenu-label-call |
| 6717 | Change the text that is used as sub-listing labels in imenu. | 6717 | Change the text that is used as sub-listing labels in imenu. |
| 6718 | 6718 | ||
| 6719 | To run code after DCL mode has loaded, use `with-eval-after-load'. | ||
| 6720 | Turning on DCL mode calls the value of the variable `dcl-mode-hook' | 6719 | Turning on DCL mode calls the value of the variable `dcl-mode-hook' |
| 6721 | with no args, if that value is non-nil. | 6720 | with no args, if that value is non-nil. |
| 6722 | 6721 | ||
| @@ -7130,7 +7129,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 7130 | if ARG is a negative number. | 7129 | if ARG is a negative number. |
| 7131 | 7130 | ||
| 7132 | To check whether the minor mode is enabled in the current buffer, | 7131 | To check whether the minor mode is enabled in the current buffer, |
| 7133 | evaluate `(default-value \\='desktop-save-mode)'. | 7132 | evaluate the variable `(default-value \\='desktop-save-mode)'. |
| 7134 | 7133 | ||
| 7135 | The mode's hook is called both when the mode is enabled and when it is | 7134 | The mode's hook is called both when the mode is enabled and when it is |
| 7136 | disabled. | 7135 | disabled. |
| @@ -7744,7 +7743,7 @@ move to that file's line in the directory listing. | |||
| 7744 | If the current buffer isn't visiting a file, Dired `default-directory'. | 7743 | If the current buffer isn't visiting a file, Dired `default-directory'. |
| 7745 | 7744 | ||
| 7746 | If in Dired already, pop up a level and goto old directory's line. | 7745 | If in Dired already, pop up a level and goto old directory's line. |
| 7747 | In case the proper Dired file line cannot be found, refresh the dired | 7746 | In case the proper Dired file line cannot be found, refresh the Dired |
| 7748 | buffer and try again. | 7747 | buffer and try again. |
| 7749 | 7748 | ||
| 7750 | When OTHER-WINDOW is non-nil, jump to Dired buffer in other window. | 7749 | When OTHER-WINDOW is non-nil, jump to Dired buffer in other window. |
| @@ -9846,13 +9845,19 @@ displayed." t) | |||
| 9846 | 9845 | ||
| 9847 | (autoload 'eshell-execute-file "em-script" "\ | 9846 | (autoload 'eshell-execute-file "em-script" "\ |
| 9848 | Execute a series of Eshell commands in FILE, passing ARGS. | 9847 | Execute a series of Eshell commands in FILE, passing ARGS. |
| 9849 | If DESTINATION is t, write the command output to the current buffer. If | 9848 | If OUTPUT-TARGET is t (interactively, with the prefix argument), write |
| 9850 | nil, don't write the output anywhere. For any other value, output to | 9849 | the command's standard output to the current buffer at point. If nil, |
| 9851 | the corresponding Eshell target (see `eshell-get-target'). | 9850 | don't write the output anywhere. For any other value, output to that |
| 9851 | Eshell target (see `eshell-get-target'). | ||
| 9852 | |||
| 9853 | ERROR-TARGET is similar to OUTPUT-TARGET, except that it controls where | ||
| 9854 | to write standard error, and a nil value means to write standard error | ||
| 9855 | to the same place as standard output. (To suppress standard error, you | ||
| 9856 | can write to the Eshell virtual target \"/dev/null\".) | ||
| 9852 | 9857 | ||
| 9853 | Comments begin with `#'. | 9858 | Comments begin with `#'. |
| 9854 | 9859 | ||
| 9855 | (fn FILE &optional ARGS DESTINATION)") | 9860 | (fn FILE &optional ARGS OUTPUT-TARGET ERROR-TARGET)" t) |
| 9856 | (autoload 'eshell-batch-file "em-script" "\ | 9861 | (autoload 'eshell-batch-file "em-script" "\ |
| 9857 | Execute an Eshell script as a batch script from the command line. | 9862 | Execute an Eshell script as a batch script from the command line. |
| 9858 | Inside your Eshell script file, you can add the following at the | 9863 | Inside your Eshell script file, you can add the following at the |
| @@ -10421,7 +10426,7 @@ Look at CONFIG and try to expand GROUP. | |||
| 10421 | 10426 | ||
| 10422 | ;;; Generated autoloads from erc/erc.el | 10427 | ;;; Generated autoloads from erc/erc.el |
| 10423 | 10428 | ||
| 10424 | (push (purecopy '(erc 5 6)) package--builtin-versions) | 10429 | (push (purecopy '(erc 5 6 1 -4)) package--builtin-versions) |
| 10425 | (dolist (symbol '( erc-sasl erc-spelling ; 29 | 10430 | (dolist (symbol '( erc-sasl erc-spelling ; 29 |
| 10426 | erc-imenu erc-nicks)) ; 30 | 10431 | erc-imenu erc-nicks)) ; 30 |
| 10427 | (custom-add-load symbol symbol)) | 10432 | (custom-add-load symbol symbol)) |
| @@ -10901,10 +10906,22 @@ information on Eshell, see Info node `(eshell)Top'. | |||
| 10901 | (fn &optional ARG)" t) | 10906 | (fn &optional ARG)" t) |
| 10902 | (autoload 'eshell-command "eshell" "\ | 10907 | (autoload 'eshell-command "eshell" "\ |
| 10903 | Execute the Eshell command string COMMAND. | 10908 | Execute the Eshell command string COMMAND. |
| 10904 | If TO-CURRENT-BUFFER is non-nil (interactively, with the prefix | 10909 | If OUTPUT-TARGET is t (interactively, with the prefix argument), write |
| 10905 | argument), then insert output into the current buffer at point. | 10910 | the command's standard output to the current buffer at point. If nil, |
| 10906 | 10911 | write the output to a new output buffer. For any other value, output to | |
| 10907 | (fn COMMAND &optional TO-CURRENT-BUFFER)" t) | 10912 | that Eshell target (see `eshell-get-target'). |
| 10913 | |||
| 10914 | ERROR-TARGET is similar to OUTPUT-TARGET, except that it controls where | ||
| 10915 | to write standard error, and a nil value means to write standard error | ||
| 10916 | to the same place as standard output. (To suppress standard error, you | ||
| 10917 | can write to the Eshell virtual target \"/dev/null\".) | ||
| 10918 | |||
| 10919 | When \"&\" is added at end of command, the command is async and its | ||
| 10920 | output appears in a specific buffer. You can customize | ||
| 10921 | `eshell-command-async-buffer' to specify what to do when this output | ||
| 10922 | buffer is already taken by another running shell command. | ||
| 10923 | |||
| 10924 | (fn COMMAND &optional OUTPUT-TARGET ERROR-TARGET)" t) | ||
| 10908 | (autoload 'eshell-command-result "eshell" "\ | 10925 | (autoload 'eshell-command-result "eshell" "\ |
| 10909 | Execute the given Eshell COMMAND, and return the result. | 10926 | Execute the given Eshell COMMAND, and return the result. |
| 10910 | The result might be any Lisp object. | 10927 | The result might be any Lisp object. |
| @@ -11220,7 +11237,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 11220 | if ARG is a negative number. | 11237 | if ARG is a negative number. |
| 11221 | 11238 | ||
| 11222 | To check whether the minor mode is enabled in the current buffer, | 11239 | To check whether the minor mode is enabled in the current buffer, |
| 11223 | evaluate `(default-value \\='etags-regen-mode)'. | 11240 | evaluate the variable `(default-value \\='etags-regen-mode)'. |
| 11224 | 11241 | ||
| 11225 | The mode's hook is called both when the mode is enabled and when it is | 11242 | The mode's hook is called both when the mode is enabled and when it is |
| 11226 | disabled. | 11243 | disabled. |
| @@ -13054,7 +13071,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 13054 | if ARG is a negative number. | 13071 | if ARG is a negative number. |
| 13055 | 13072 | ||
| 13056 | To check whether the minor mode is enabled in the current buffer, | 13073 | To check whether the minor mode is enabled in the current buffer, |
| 13057 | evaluate `flymake-mode'. | 13074 | evaluate the variable `flymake-mode'. |
| 13058 | 13075 | ||
| 13059 | The mode's hook is called both when the mode is enabled and when it is | 13076 | The mode's hook is called both when the mode is enabled and when it is |
| 13060 | disabled. | 13077 | disabled. |
| @@ -13771,7 +13788,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 13771 | if ARG is a negative number. | 13788 | if ARG is a negative number. |
| 13772 | 13789 | ||
| 13773 | To check whether the minor mode is enabled in the current buffer, | 13790 | To check whether the minor mode is enabled in the current buffer, |
| 13774 | evaluate `(default-value \\='gdb-enable-debug)'. | 13791 | evaluate the variable `(default-value \\='gdb-enable-debug)'. |
| 13775 | 13792 | ||
| 13776 | The mode's hook is called both when the mode is enabled and when it is | 13793 | The mode's hook is called both when the mode is enabled and when it is |
| 13777 | disabled. | 13794 | disabled. |
| @@ -14105,8 +14122,8 @@ Read news as a child unplugged. | |||
| 14105 | (autoload 'gnus-agentize "gnus-agent" "\ | 14122 | (autoload 'gnus-agentize "gnus-agent" "\ |
| 14106 | Allow Gnus to be an offline newsreader. | 14123 | Allow Gnus to be an offline newsreader. |
| 14107 | 14124 | ||
| 14108 | The gnus-agentize function is now called internally by gnus when | 14125 | The `gnus-agentize' function is now called internally by gnus when |
| 14109 | gnus-agent is set. If you wish to avoid calling gnus-agentize, | 14126 | `gnus-agent' is set. If you wish to avoid calling `gnus-agentize', |
| 14110 | customize `gnus-agent' to nil. | 14127 | customize `gnus-agent' to nil. |
| 14111 | 14128 | ||
| 14112 | This will modify the `gnus-setup-news-hook', and | 14129 | This will modify the `gnus-setup-news-hook', and |
| @@ -16050,8 +16067,8 @@ which can be called interactively, are: | |||
| 16050 | (See `font-lock-keywords'.) They may be edited and re-loaded with \\[hi-lock-find-patterns], | 16067 | (See `font-lock-keywords'.) They may be edited and re-loaded with \\[hi-lock-find-patterns], |
| 16051 | any valid `font-lock-keywords' form is acceptable. When a file is | 16068 | any valid `font-lock-keywords' form is acceptable. When a file is |
| 16052 | loaded the patterns are read if `hi-lock-file-patterns-policy' is | 16069 | loaded the patterns are read if `hi-lock-file-patterns-policy' is |
| 16053 | `ask' and the user responds y to the prompt, or if | 16070 | `always', or if it's `ask' and the user responds y to the prompt, |
| 16054 | `hi-lock-file-patterns-policy' is bound to a function and that | 16071 | or if `hi-lock-file-patterns-policy' is bound to a function and that |
| 16055 | function returns t. | 16072 | function returns t. |
| 16056 | 16073 | ||
| 16057 | \\[hi-lock-find-patterns] | 16074 | \\[hi-lock-find-patterns] |
| @@ -16253,7 +16270,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 16253 | if ARG is a negative number. | 16270 | if ARG is a negative number. |
| 16254 | 16271 | ||
| 16255 | To check whether the minor mode is enabled in the current buffer, | 16272 | To check whether the minor mode is enabled in the current buffer, |
| 16256 | evaluate `hide-ifdef-mode'. | 16273 | evaluate the variable `hide-ifdef-mode'. |
| 16257 | 16274 | ||
| 16258 | The mode's hook is called both when the mode is enabled and when it is | 16275 | The mode's hook is called both when the mode is enabled and when it is |
| 16259 | disabled. | 16276 | disabled. |
| @@ -16375,7 +16392,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 16375 | if ARG is a negative number. | 16392 | if ARG is a negative number. |
| 16376 | 16393 | ||
| 16377 | To check whether the minor mode is enabled in the current buffer, | 16394 | To check whether the minor mode is enabled in the current buffer, |
| 16378 | evaluate `highlight-changes-mode'. | 16395 | evaluate the variable `highlight-changes-mode'. |
| 16379 | 16396 | ||
| 16380 | The mode's hook is called both when the mode is enabled and when it is | 16397 | The mode's hook is called both when the mode is enabled and when it is |
| 16381 | disabled. | 16398 | disabled. |
| @@ -16403,7 +16420,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 16403 | if ARG is a negative number. | 16420 | if ARG is a negative number. |
| 16404 | 16421 | ||
| 16405 | To check whether the minor mode is enabled in the current buffer, | 16422 | To check whether the minor mode is enabled in the current buffer, |
| 16406 | evaluate `highlight-changes-visible-mode'. | 16423 | evaluate the variable `highlight-changes-visible-mode'. |
| 16407 | 16424 | ||
| 16408 | The mode's hook is called both when the mode is enabled and when it is | 16425 | The mode's hook is called both when the mode is enabled and when it is |
| 16409 | disabled. | 16426 | disabled. |
| @@ -16693,7 +16710,6 @@ Major mode for editing Html, powered by tree-sitter. | |||
| 16693 | 16710 | ||
| 16694 | ;;; Generated autoloads from htmlfontify.el | 16711 | ;;; Generated autoloads from htmlfontify.el |
| 16695 | 16712 | ||
| 16696 | (push (purecopy '(htmlfontify 0 21)) package--builtin-versions) | ||
| 16697 | (autoload 'htmlfontify-buffer "htmlfontify" "\ | 16713 | (autoload 'htmlfontify-buffer "htmlfontify" "\ |
| 16698 | Create a new buffer, named for the current buffer + a .html extension, | 16714 | Create a new buffer, named for the current buffer + a .html extension, |
| 16699 | containing an inline CSS-stylesheet and formatted CSS-markup HTML | 16715 | containing an inline CSS-stylesheet and formatted CSS-markup HTML |
| @@ -17643,7 +17659,9 @@ IMAGE must be an image created with `create-image' or `defimage'. | |||
| 17643 | IMAGE is displayed by putting an overlay into the current buffer with a | 17659 | IMAGE is displayed by putting an overlay into the current buffer with a |
| 17644 | `before-string' STRING that has a `display' property whose value is the | 17660 | `before-string' STRING that has a `display' property whose value is the |
| 17645 | image. STRING defaults to \"x\" if it's nil or omitted. | 17661 | image. STRING defaults to \"x\" if it's nil or omitted. |
| 17646 | The overlay created by this function has the `put-image' property set to t. | 17662 | Upon success, this function returns the created overlay with its |
| 17663 | `put-image' property set to t. | ||
| 17664 | |||
| 17647 | POS may be an integer or marker. | 17665 | POS may be an integer or marker. |
| 17648 | AREA is where to display the image. AREA nil or omitted means | 17666 | AREA is where to display the image. AREA nil or omitted means |
| 17649 | display it in the text area, a value of `left-margin' means | 17667 | display it in the text area, a value of `left-margin' means |
| @@ -17707,7 +17725,7 @@ string containing the actual image data. If the property `:type TYPE' | |||
| 17707 | is omitted or nil, try to determine the image type from its first few | 17725 | is omitted or nil, try to determine the image type from its first few |
| 17708 | bytes of image data. If that doesn't work, and the property `:file | 17726 | bytes of image data. If that doesn't work, and the property `:file |
| 17709 | FILE' provide a file name, use its file extension as indication of the | 17727 | FILE' provide a file name, use its file extension as indication of the |
| 17710 | image type. If `:type TYPE' is provided, it must match the actual type | 17728 | image type. If `:type TYPE' is provided, it must match the actual type |
| 17711 | determined for FILE or DATA by `create-image'. | 17729 | determined for FILE or DATA by `create-image'. |
| 17712 | 17730 | ||
| 17713 | The function returns the image specification for the first specification | 17731 | The function returns the image specification for the first specification |
| @@ -19013,7 +19031,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 19013 | if ARG is a negative number. | 19031 | if ARG is a negative number. |
| 19014 | 19032 | ||
| 19015 | To check whether the minor mode is enabled in the current buffer, | 19033 | To check whether the minor mode is enabled in the current buffer, |
| 19016 | evaluate `ispell-minor-mode'. | 19034 | evaluate the variable `ispell-minor-mode'. |
| 19017 | 19035 | ||
| 19018 | The mode's hook is called both when the mode is enabled and when it is | 19036 | The mode's hook is called both when the mode is enabled and when it is |
| 19019 | disabled. | 19037 | disabled. |
| @@ -20855,8 +20873,8 @@ the MH mail system. | |||
| 20855 | 20873 | ||
| 20856 | (fn &optional ARG)" t) | 20874 | (fn &optional ARG)" t) |
| 20857 | (autoload 'mh-folder-mode "mh-folder" "\ | 20875 | (autoload 'mh-folder-mode "mh-folder" "\ |
| 20858 | Major MH-E mode for \"editing\" an MH folder scan listing.\\<mh-folder-mode-map> | 20876 | Major MH-E mode for \"editing\" an MH folder scan listing. |
| 20859 | 20877 | \\<mh-folder-mode-map> | |
| 20860 | You can show the message the cursor is pointing to, and step through | 20878 | You can show the message the cursor is pointing to, and step through |
| 20861 | the messages. Messages can be marked for deletion or refiling into | 20879 | the messages. Messages can be marked for deletion or refiling into |
| 20862 | another folder; these commands are executed all at once with a | 20880 | another folder; these commands are executed all at once with a |
| @@ -21620,7 +21638,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 21620 | if ARG is a negative number. | 21638 | if ARG is a negative number. |
| 21621 | 21639 | ||
| 21622 | To check whether the minor mode is enabled in the current buffer, | 21640 | To check whether the minor mode is enabled in the current buffer, |
| 21623 | evaluate `(default-value \\='msb-mode)'. | 21641 | evaluate the variable `(default-value \\='msb-mode)'. |
| 21624 | 21642 | ||
| 21625 | The mode's hook is called both when the mode is enabled and when it is | 21643 | The mode's hook is called both when the mode is enabled and when it is |
| 21626 | disabled. | 21644 | disabled. |
| @@ -21951,11 +21969,20 @@ Run `traceroute-program' for TARGET. | |||
| 21951 | 21969 | ||
| 21952 | (fn TARGET)" t) | 21970 | (fn TARGET)" t) |
| 21953 | (autoload 'ping "net-utils" "\ | 21971 | (autoload 'ping "net-utils" "\ |
| 21954 | Ping HOST. | 21972 | Ping HOST using `ping-program'. |
| 21955 | If your system's ping continues until interrupted, you can try setting | ||
| 21956 | `ping-program-options'. | ||
| 21957 | 21973 | ||
| 21958 | (fn HOST)" t) | 21974 | The user option `ping-program-options' is passed as flags to |
| 21975 | `ping-program'. With a \\[universal-argument] prefix arg, prompt the | ||
| 21976 | user for the flags to pass. | ||
| 21977 | |||
| 21978 | When called from Lisp, the optional argument FLAGS, if non-nil, is a | ||
| 21979 | list of strings that will be passed as flags for the `ping-program'. If | ||
| 21980 | FLAGS is nil, `ping-program-options' will be used. | ||
| 21981 | |||
| 21982 | If your system's ping continues until interrupted, you can try using a | ||
| 21983 | prefix argument or setting `ping-program-options'. | ||
| 21984 | |||
| 21985 | (fn HOST &optional FLAGS)" t) | ||
| 21959 | (autoload 'nslookup-host "net-utils" "\ | 21986 | (autoload 'nslookup-host "net-utils" "\ |
| 21960 | Look up the DNS information for HOST (name or IP address). | 21987 | Look up the DNS information for HOST (name or IP address). |
| 21961 | Optional argument NAME-SERVER says which server to use for | 21988 | Optional argument NAME-SERVER says which server to use for |
| @@ -22944,7 +22971,7 @@ Coloring: | |||
| 22944 | 22971 | ||
| 22945 | ;;; Generated autoloads from org/org.el | 22972 | ;;; Generated autoloads from org/org.el |
| 22946 | 22973 | ||
| 22947 | (push (purecopy '(org 9 7 4)) package--builtin-versions) | 22974 | (push (purecopy '(org 9 7 9)) package--builtin-versions) |
| 22948 | (autoload 'org-babel-do-load-languages "org" "\ | 22975 | (autoload 'org-babel-do-load-languages "org" "\ |
| 22949 | Load the languages defined in `org-babel-load-languages'. | 22976 | Load the languages defined in `org-babel-load-languages'. |
| 22950 | 22977 | ||
| @@ -23492,11 +23519,6 @@ With a numeric prefix, show all headlines up to that level. | |||
| 23492 | (register-definition-prefixes "org-element" '("org-element-")) | 23519 | (register-definition-prefixes "org-element" '("org-element-")) |
| 23493 | 23520 | ||
| 23494 | 23521 | ||
| 23495 | ;;; Generated autoloads from org/org-element-ast.el | ||
| 23496 | |||
| 23497 | (register-definition-prefixes "org-element-ast" '("org-element-")) | ||
| 23498 | |||
| 23499 | |||
| 23500 | ;;; Generated autoloads from org/org-entities.el | 23522 | ;;; Generated autoloads from org/org-entities.el |
| 23501 | 23523 | ||
| 23502 | (register-definition-prefixes "org-entities" '("org-entit")) | 23524 | (register-definition-prefixes "org-entities" '("org-entit")) |
| @@ -24216,7 +24238,8 @@ See `decode-time' for the meaning of FORM. | |||
| 24216 | ;;; Generated autoloads from progmodes/pascal.el | 24238 | ;;; Generated autoloads from progmodes/pascal.el |
| 24217 | 24239 | ||
| 24218 | (autoload 'pascal-mode "pascal" "\ | 24240 | (autoload 'pascal-mode "pascal" "\ |
| 24219 | Major mode for editing Pascal code.\\<pascal-mode-map> | 24241 | Major mode for editing Pascal code. |
| 24242 | \\<pascal-mode-map> | ||
| 24220 | TAB indents for Pascal code. Delete converts tabs to spaces as it moves back. | 24243 | TAB indents for Pascal code. Delete converts tabs to spaces as it moves back. |
| 24221 | 24244 | ||
| 24222 | \\[completion-at-point] completes the word around current point with respect to position in code | 24245 | \\[completion-at-point] completes the word around current point with respect to position in code |
| @@ -24250,7 +24273,7 @@ Variables controlling indentation/edit style: | |||
| 24250 | regardless of where in the line point is when the TAB command is used. | 24273 | regardless of where in the line point is when the TAB command is used. |
| 24251 | `pascal-auto-endcomments' (default t) | 24274 | `pascal-auto-endcomments' (default t) |
| 24252 | Non-nil means a comment { ... } is set after the ends which ends cases and | 24275 | Non-nil means a comment { ... } is set after the ends which ends cases and |
| 24253 | functions. The name of the function or case will be set between the braces. | 24276 | functions. The name of the function or case will be set between the braces. |
| 24254 | `pascal-auto-lineup' (default t) | 24277 | `pascal-auto-lineup' (default t) |
| 24255 | List of contexts where auto lineup of :'s or ='s should be done. | 24278 | List of contexts where auto lineup of :'s or ='s should be done. |
| 24256 | 24279 | ||
| @@ -24897,44 +24920,6 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. | |||
| 24897 | (register-definition-prefixes "pgtk-dnd" '("pgtk-dnd-")) | 24920 | (register-definition-prefixes "pgtk-dnd" '("pgtk-dnd-")) |
| 24898 | 24921 | ||
| 24899 | 24922 | ||
| 24900 | ;;; Generated autoloads from progmodes/php-ts-mode.el | ||
| 24901 | |||
| 24902 | (autoload 'php-ts-mode "php-ts-mode" "\ | ||
| 24903 | Major mode for editing PHP, powered by tree-sitter. | ||
| 24904 | |||
| 24905 | (fn)" t) | ||
| 24906 | (autoload 'php-ts-mode-run-php-webserver "php-ts-mode" "\ | ||
| 24907 | Run PHP built-in web server. | ||
| 24908 | |||
| 24909 | PORT: Port number of built-in web server, default `php-ts-mode-ws-port'. | ||
| 24910 | Prompt for the port if the default value is nil. | ||
| 24911 | HOSTNAME: Hostname or IP address of Built-in web server, | ||
| 24912 | default `php-ts-mode-ws-hostname'. Prompt for the hostname if the | ||
| 24913 | default value is nil. | ||
| 24914 | DOCUMENT-ROOT: Path to Document root, default `php-ts-mode-ws-document-root'. | ||
| 24915 | Prompt for the document-root if the default value is nil. | ||
| 24916 | ROUTER-SCRIPT: Path of the router PHP script, | ||
| 24917 | see `https://www.php.net/manual/en/features.commandline.webserver.php' | ||
| 24918 | NUM-OF-WORKERS: Before run the web server set the | ||
| 24919 | PHP_CLI_SERVER_WORKERS env variable useful for testing code against | ||
| 24920 | multiple simultaneous requests. | ||
| 24921 | |||
| 24922 | Interactively, when invoked with prefix argument, always prompt | ||
| 24923 | for PORT, HOSTNAME, DOCUMENT-ROOT and ROUTER-SCRIPT. | ||
| 24924 | |||
| 24925 | (fn &optional PORT HOSTNAME DOCUMENT-ROOT ROUTER-SCRIPT NUM-OF-WORKERS)" t) | ||
| 24926 | (autoload 'run-php "php-ts-mode" "\ | ||
| 24927 | Run an PHP interpreter as a inferior process. | ||
| 24928 | |||
| 24929 | Arguments CMD an CONFIG, default to `php-ts-mode-php-executable' | ||
| 24930 | and `php-ts-mode-php-config' respectively, control which PHP interpreter is run. | ||
| 24931 | Prompt for CMD if `php-ts-mode-php-executable' is nil. | ||
| 24932 | Optional CONFIG, if supplied, is the php.ini file to use. | ||
| 24933 | |||
| 24934 | (fn &optional CMD CONFIG)" t) | ||
| 24935 | (register-definition-prefixes "php-ts-mode" '("inferior-php-ts-mode" "php-ts-")) | ||
| 24936 | |||
| 24937 | |||
| 24938 | ;;; Generated autoloads from textmodes/picture.el | 24923 | ;;; Generated autoloads from textmodes/picture.el |
| 24939 | 24924 | ||
| 24940 | (autoload 'picture-mode "picture" "\ | 24925 | (autoload 'picture-mode "picture" "\ |
| @@ -25971,9 +25956,11 @@ is non-nil, the command will not ask the user for confirmation. | |||
| 25971 | NO-CONFIRM is always nil when the command is invoked | 25956 | NO-CONFIRM is always nil when the command is invoked |
| 25972 | interactively. | 25957 | interactively. |
| 25973 | 25958 | ||
| 25959 | If PROJECT is non-nil, kill buffers for that project instead. | ||
| 25960 | |||
| 25974 | Also see the `project-kill-buffers-display-buffer-list' variable. | 25961 | Also see the `project-kill-buffers-display-buffer-list' variable. |
| 25975 | 25962 | ||
| 25976 | (fn &optional NO-CONFIRM)" t) | 25963 | (fn &optional NO-CONFIRM PROJECT)" t) |
| 25977 | (autoload 'project-remember-project "project" "\ | 25964 | (autoload 'project-remember-project "project" "\ |
| 25978 | Add project PR to the front of the project list. | 25965 | Add project PR to the front of the project list. |
| 25979 | Save the result in `project-list-file' if the list of projects | 25966 | Save the result in `project-list-file' if the list of projects |
| @@ -26690,7 +26677,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 26690 | if ARG is a negative number. | 26677 | if ARG is a negative number. |
| 26691 | 26678 | ||
| 26692 | To check whether the minor mode is enabled in the current buffer, | 26679 | To check whether the minor mode is enabled in the current buffer, |
| 26693 | evaluate `(default-value \\='rcirc-track-minor-mode)'. | 26680 | evaluate the variable `(default-value \\='rcirc-track-minor-mode)'. |
| 26694 | 26681 | ||
| 26695 | The mode's hook is called both when the mode is enabled and when it is | 26682 | The mode's hook is called both when the mode is enabled and when it is |
| 26696 | disabled. | 26683 | disabled. |
| @@ -28830,8 +28817,8 @@ This also saves the value of `send-mail-function' via Customize.") | |||
| 28830 | Major mode for editing mail to be sent. | 28817 | Major mode for editing mail to be sent. |
| 28831 | Like Text Mode but with these additional commands: | 28818 | Like Text Mode but with these additional commands: |
| 28832 | 28819 | ||
| 28833 | \\[mail-send] mail-send (send the message) | 28820 | \\[mail-send] `mail-send' (send the message) |
| 28834 | \\[mail-send-and-exit] mail-send-and-exit (send the message and exit) | 28821 | \\[mail-send-and-exit] `mail-send-and-exit' (send the message and exit) |
| 28835 | 28822 | ||
| 28836 | Here are commands that move to a header field (and create it if there isn't): | 28823 | Here are commands that move to a header field (and create it if there isn't): |
| 28837 | \\[mail-to] move to To: \\[mail-subject] move to Subj: | 28824 | \\[mail-to] move to To: \\[mail-subject] move to Subj: |
| @@ -28840,9 +28827,9 @@ Here are commands that move to a header field (and create it if there isn't): | |||
| 28840 | \\[mail-mail-reply-to] move to Mail-Reply-To: | 28827 | \\[mail-mail-reply-to] move to Mail-Reply-To: |
| 28841 | \\[mail-mail-followup-to] move to Mail-Followup-To: | 28828 | \\[mail-mail-followup-to] move to Mail-Followup-To: |
| 28842 | \\[mail-text] move to message text. | 28829 | \\[mail-text] move to message text. |
| 28843 | \\[mail-signature] mail-signature (insert `mail-signature-file' file). | 28830 | \\[mail-signature] `mail-signature' (insert `mail-signature-file' file). |
| 28844 | \\[mail-yank-original] mail-yank-original (insert current message, in Rmail). | 28831 | \\[mail-yank-original] `mail-yank-original' (insert current message, in Rmail). |
| 28845 | \\[mail-fill-yanked-message] mail-fill-yanked-message (fill what was yanked). | 28832 | \\[mail-fill-yanked-message] `mail-fill-yanked-message' (fill what was yanked). |
| 28846 | \\[mail-insert-file] insert a text file into the message. | 28833 | \\[mail-insert-file] insert a text file into the message. |
| 28847 | \\[mail-add-attachment] attach to the message a file as binary attachment. | 28834 | \\[mail-add-attachment] attach to the message a file as binary attachment. |
| 28848 | Turning on Mail mode runs the normal hooks `text-mode-hook' and | 28835 | Turning on Mail mode runs the normal hooks `text-mode-hook' and |
| @@ -30969,6 +30956,61 @@ removed. | |||
| 30969 | 30956 | ||
| 30970 | (fn STRING)") | 30957 | (fn STRING)") |
| 30971 | (function-put 'string-clean-whitespace 'important-return-value 't) | 30958 | (function-put 'string-clean-whitespace 'important-return-value 't) |
| 30959 | (autoload 'string-fill "subr-x" "\ | ||
| 30960 | Try to word-wrap STRING so that it displays with lines no wider than WIDTH. | ||
| 30961 | STRING is wrapped where there is whitespace in it. If there are | ||
| 30962 | individual words in STRING that are wider than WIDTH, the result | ||
| 30963 | will have lines that are wider than WIDTH. | ||
| 30964 | |||
| 30965 | (fn STRING WIDTH)") | ||
| 30966 | (function-put 'string-fill 'important-return-value 't) | ||
| 30967 | (autoload 'string-limit "subr-x" "\ | ||
| 30968 | Return a substring of STRING that is (up to) LENGTH characters long. | ||
| 30969 | If STRING is shorter than or equal to LENGTH characters, return the | ||
| 30970 | entire string unchanged. | ||
| 30971 | |||
| 30972 | If STRING is longer than LENGTH characters, return a substring | ||
| 30973 | consisting of the first LENGTH characters of STRING. If END is | ||
| 30974 | non-nil, return the last LENGTH characters instead. | ||
| 30975 | |||
| 30976 | If CODING-SYSTEM is non-nil, STRING will be encoded before | ||
| 30977 | limiting, and LENGTH is interpreted as the number of bytes to | ||
| 30978 | limit the string to. The result will be a unibyte string that is | ||
| 30979 | shorter than LENGTH, but will not contain \"partial\" | ||
| 30980 | characters (or glyphs), even if CODING-SYSTEM encodes characters | ||
| 30981 | with several bytes per character. If the coding system specifies | ||
| 30982 | prefix like the byte order mark (aka \"BOM\") or a shift-in sequence, | ||
| 30983 | their bytes will be normally counted as part of LENGTH. This is | ||
| 30984 | the case, for instance, with `utf-16'. If this isn't desired, use a | ||
| 30985 | coding system that doesn't specify a BOM, like `utf-16le' or `utf-16be'. | ||
| 30986 | |||
| 30987 | When shortening strings for display purposes, | ||
| 30988 | `truncate-string-to-width' is almost always a better alternative | ||
| 30989 | than this function. | ||
| 30990 | |||
| 30991 | (fn STRING LENGTH &optional END CODING-SYSTEM)") | ||
| 30992 | (function-put 'string-limit 'important-return-value 't) | ||
| 30993 | (autoload 'string-pad "subr-x" "\ | ||
| 30994 | Pad STRING to LENGTH using PADDING. | ||
| 30995 | If PADDING is nil, the space character is used. If not nil, it | ||
| 30996 | should be a character. | ||
| 30997 | |||
| 30998 | If STRING is longer than the absolute value of LENGTH, no padding | ||
| 30999 | is done. | ||
| 31000 | |||
| 31001 | If START is nil (or not present), the padding is done to the end | ||
| 31002 | of the string, and if non-nil, padding is done to the start of | ||
| 31003 | the string. | ||
| 31004 | |||
| 31005 | (fn STRING LENGTH &optional PADDING START)") | ||
| 31006 | (function-put 'string-pad 'pure 't) | ||
| 31007 | (function-put 'string-pad 'side-effect-free 't) | ||
| 31008 | (autoload 'string-chop-newline "subr-x" "\ | ||
| 31009 | Remove the final newline (if any) from STRING. | ||
| 31010 | |||
| 31011 | (fn STRING)") | ||
| 31012 | (function-put 'string-chop-newline 'pure 't) | ||
| 31013 | (function-put 'string-chop-newline 'side-effect-free 't) | ||
| 30972 | (autoload 'named-let "subr-x" "\ | 31014 | (autoload 'named-let "subr-x" "\ |
| 30973 | Looping construct taken from Scheme. | 31015 | Looping construct taken from Scheme. |
| 30974 | Like `let', bind variables in BINDINGS and then evaluate BODY, | 31016 | Like `let', bind variables in BINDINGS and then evaluate BODY, |
| @@ -31007,7 +31049,7 @@ this defaults to the current buffer. | |||
| 31007 | Query the user for a process and return the process object. | 31049 | Query the user for a process and return the process object. |
| 31008 | 31050 | ||
| 31009 | (fn PROMPT)") | 31051 | (fn PROMPT)") |
| 31010 | (register-definition-prefixes "subr-x" '("emacs-etc--hide-local-variables" "hash-table-" "internal--thread-argument" "replace-region-contents" "string-" "thread-" "with-buffer-unmodified-if-unchanged")) | 31052 | (register-definition-prefixes "subr-x" '("emacs-etc--hide-local-variables" "hash-table-" "internal--thread-argument" "replace-region-contents" "string-remove-" "thread-" "with-buffer-unmodified-if-unchanged")) |
| 31011 | 31053 | ||
| 31012 | 31054 | ||
| 31013 | ;;; Generated autoloads from progmodes/subword.el | 31055 | ;;; Generated autoloads from progmodes/subword.el |
| @@ -31218,7 +31260,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 31218 | if ARG is a negative number. | 31260 | if ARG is a negative number. |
| 31219 | 31261 | ||
| 31220 | To check whether the minor mode is enabled in the current buffer, | 31262 | To check whether the minor mode is enabled in the current buffer, |
| 31221 | evaluate `tab-line-mode'. | 31263 | evaluate the variable `tab-line-mode'. |
| 31222 | 31264 | ||
| 31223 | The mode's hook is called both when the mode is enabled and when it is | 31265 | The mode's hook is called both when the mode is enabled and when it is |
| 31224 | disabled. | 31266 | disabled. |
| @@ -31301,7 +31343,7 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode | |||
| 31301 | if ARG is a negative number. | 31343 | if ARG is a negative number. |
| 31302 | 31344 | ||
| 31303 | To check whether the minor mode is enabled in the current buffer, | 31345 | To check whether the minor mode is enabled in the current buffer, |
| 31304 | evaluate `table-fixed-width-mode'. | 31346 | evaluate the variable `table-fixed-width-mode'. |
| 31305 | 31347 | ||
| 31306 | The mode's hook is called both when the mode is enabled and when it is | 31348 | The mode's hook is called both when the mode is enabled and when it is |
| 31307 | disabled. | 31349 | disabled. |
| @@ -31336,8 +31378,8 @@ first cell. | |||
| 31336 | |-!- | | | | 31378 | |-!- | | | |
| 31337 | +-----+-----+-----+ | 31379 | +-----+-----+-----+ |
| 31338 | 31380 | ||
| 31339 | Inside a table cell, there are special key bindings. \\<table-cell-map> | 31381 | Inside a table cell, there are special key bindings. |
| 31340 | 31382 | \\<table-cell-map> | |
| 31341 | M-9 \\[table-widen-cell] (or \\[universal-argument] 9 \\[table-widen-cell]) widens the first cell by 9 character | 31383 | M-9 \\[table-widen-cell] (or \\[universal-argument] 9 \\[table-widen-cell]) widens the first cell by 9 character |
| 31342 | width, which results as | 31384 | width, which results as |
| 31343 | 31385 | ||
| @@ -31346,7 +31388,7 @@ width, which results as | |||
| 31346 | +--------------+-----+-----+ | 31388 | +--------------+-----+-----+ |
| 31347 | 31389 | ||
| 31348 | Type TAB \\[table-widen-cell] then type TAB M-2 M-7 \\[table-widen-cell] (or \\[universal-argument] 2 7 \\[table-widen-cell]). Typing | 31390 | Type TAB \\[table-widen-cell] then type TAB M-2 M-7 \\[table-widen-cell] (or \\[universal-argument] 2 7 \\[table-widen-cell]). Typing |
| 31349 | TAB moves the point forward by a cell. The result now looks like this: | 31391 | TAB moves the point forward by a cell. The result now looks like this: |
| 31350 | 31392 | ||
| 31351 | +--------------+------+--------------------------------+ | 31393 | +--------------+------+--------------------------------+ |
| 31352 | | | |-!- | | 31394 | | | |-!- | |
| @@ -32557,7 +32599,10 @@ where the mouse button is clicked to find the thing nearby. | |||
| 32557 | 32599 | ||
| 32558 | (fn EVENT THING &optional NO-PROPERTIES)") | 32600 | (fn EVENT THING &optional NO-PROPERTIES)") |
| 32559 | (autoload 'sexp-at-point "thingatpt" "\ | 32601 | (autoload 'sexp-at-point "thingatpt" "\ |
| 32560 | Return the sexp at point, or nil if none is found.") | 32602 | Return the sexp at point, or nil if none is found. |
| 32603 | This is for returning the Lisp object represented by text at point; | ||
| 32604 | use (thing-at-point \\='sexp) instead if you rather want the balanced | ||
| 32605 | expression at point regardless of Lisp syntax.") | ||
| 32561 | (autoload 'symbol-at-point "thingatpt" "\ | 32606 | (autoload 'symbol-at-point "thingatpt" "\ |
| 32562 | Return the symbol at point, or nil if none is found.") | 32607 | Return the symbol at point, or nil if none is found.") |
| 32563 | (autoload 'number-at-point "thingatpt" "\ | 32608 | (autoload 'number-at-point "thingatpt" "\ |
| @@ -33571,13 +33616,13 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar | |||
| 33571 | 33616 | ||
| 33572 | ;;; Generated autoloads from net/trampver.el | 33617 | ;;; Generated autoloads from net/trampver.el |
| 33573 | 33618 | ||
| 33574 | (push (purecopy '(tramp 2 7 1 -1)) package--builtin-versions) | 33619 | (push (purecopy '(tramp 2 8 0 -1)) package--builtin-versions) |
| 33575 | (register-definition-prefixes "trampver" '("tramp-")) | 33620 | (register-definition-prefixes "trampver" '("tramp-")) |
| 33576 | 33621 | ||
| 33577 | 33622 | ||
| 33578 | ;;; Generated autoloads from transient.el | 33623 | ;;; Generated autoloads from transient.el |
| 33579 | 33624 | ||
| 33580 | (push (purecopy '(transient 0 6 0)) package--builtin-versions) | 33625 | (push (purecopy '(transient 0 7 2 1)) package--builtin-versions) |
| 33581 | (autoload 'transient-insert-suffix "transient" "\ | 33626 | (autoload 'transient-insert-suffix "transient" "\ |
| 33582 | Insert a SUFFIX into PREFIX before LOC. | 33627 | Insert a SUFFIX into PREFIX before LOC. |
| 33583 | PREFIX is a prefix command, a symbol. | 33628 | PREFIX is a prefix command, a symbol. |
| @@ -33628,7 +33673,7 @@ See info node `(transient)Modifying Existing Transients'. | |||
| 33628 | 33673 | ||
| 33629 | (fn PREFIX LOC)") | 33674 | (fn PREFIX LOC)") |
| 33630 | (function-put 'transient-remove-suffix 'lisp-indent-function 'defun) | 33675 | (function-put 'transient-remove-suffix 'lisp-indent-function 'defun) |
| 33631 | (register-definition-prefixes "transient" '("static-if" "transient")) | 33676 | (register-definition-prefixes "transient" '("find-function-advised-original" "transient")) |
| 33632 | 33677 | ||
| 33633 | 33678 | ||
| 33634 | ;;; Generated autoloads from tree-widget.el | 33679 | ;;; Generated autoloads from tree-widget.el |
| @@ -34034,7 +34079,7 @@ URL-encoded before it's used. | |||
| 34034 | (autoload 'url-retrieve-synchronously "url" "\ | 34079 | (autoload 'url-retrieve-synchronously "url" "\ |
| 34035 | Retrieve URL synchronously. | 34080 | Retrieve URL synchronously. |
| 34036 | Return the buffer containing the data, or nil if there are no data | 34081 | Return the buffer containing the data, or nil if there are no data |
| 34037 | associated with it (the case for dired, info, or mailto URLs that need | 34082 | associated with it (the case for Dired, info, or mailto URLs that need |
| 34038 | no further processing). URL is either a string or a parsed URL. | 34083 | no further processing). URL is either a string or a parsed URL. |
| 34039 | 34084 | ||
| 34040 | If SILENT is non-nil, don't do any messaging while retrieving. | 34085 | If SILENT is non-nil, don't do any messaging while retrieving. |
| @@ -37264,6 +37309,11 @@ The problems cleaned up are: | |||
| 37264 | If `whitespace-style' includes the value | 37309 | If `whitespace-style' includes the value |
| 37265 | `space-after-tab::space', replace TABs by SPACEs. | 37310 | `space-after-tab::space', replace TABs by SPACEs. |
| 37266 | 37311 | ||
| 37312 | 5. missing newline at end of file. | ||
| 37313 | If `whitespace-style' includes the value `missing-newline-at-eof', | ||
| 37314 | and the cleanup region includes the end of file, add a final newline | ||
| 37315 | if it is not there already. | ||
| 37316 | |||
| 37267 | See `whitespace-style', `indent-tabs-mode' and `tab-width' for | 37317 | See `whitespace-style', `indent-tabs-mode' and `tab-width' for |
| 37268 | documentation. | 37318 | documentation. |
| 37269 | 37319 | ||
| @@ -37694,7 +37744,7 @@ available on your system. | |||
| 37694 | 37744 | ||
| 37695 | (fn &optional TOPIC RE-CACHE)" t) | 37745 | (fn &optional TOPIC RE-CACHE)" t) |
| 37696 | (autoload 'woman-dired-find-file "woman" "\ | 37746 | (autoload 'woman-dired-find-file "woman" "\ |
| 37697 | In dired, run the WoMan man-page browser on this file." t) | 37747 | In Dired, run the WoMan man-page browser on this file." t) |
| 37698 | (autoload 'woman-find-file "woman" "\ | 37748 | (autoload 'woman-find-file "woman" "\ |
| 37699 | Find, decode and browse a specific UN*X man-page source file FILE-NAME. | 37749 | Find, decode and browse a specific UN*X man-page source file FILE-NAME. |
| 37700 | Use existing buffer if possible; reformat only if prefix arg given. | 37750 | Use existing buffer if possible; reformat only if prefix arg given. |
| @@ -38075,16 +38125,310 @@ run a specific program. The program must be a member of | |||
| 38075 | 38125 | ||
| 38076 | (fn &optional PGM)" t) | 38126 | (fn &optional PGM)" t) |
| 38077 | (register-definition-prefixes "zone" '("zone-")) | 38127 | (register-definition-prefixes "zone" '("zone-")) |
| 38128 | |||
| 38129 | |||
| 38130 | ;;; Generated autoloads from org/org-element-ast.el | ||
| 38131 | |||
| 38132 | (register-definition-prefixes "org-element-ast" '("org-element-")) | ||
| 38133 | |||
| 38134 | |||
| 38135 | ;;; Generated autoloads from progmodes/php-ts-mode.el | ||
| 38136 | |||
| 38137 | (autoload 'php-ts-mode "php-ts-mode" "\ | ||
| 38138 | Major mode for editing PHP, powered by tree-sitter. | ||
| 38139 | |||
| 38140 | (fn)" t) | ||
| 38141 | (autoload 'php-ts-mode-run-php-webserver "php-ts-mode" "\ | ||
| 38142 | Run PHP built-in web server. | ||
| 38143 | |||
| 38144 | PORT: Port number of built-in web server, default `php-ts-mode-ws-port'. | ||
| 38145 | Prompt for the port if the default value is nil. | ||
| 38146 | HOSTNAME: Hostname or IP address of Built-in web server, | ||
| 38147 | default `php-ts-mode-ws-hostname'. Prompt for the hostname if the | ||
| 38148 | default value is nil. | ||
| 38149 | DOCUMENT-ROOT: Path to Document root, default `php-ts-mode-ws-document-root'. | ||
| 38150 | Prompt for the document-root if the default value is nil. | ||
| 38151 | ROUTER-SCRIPT: Path of the router PHP script, | ||
| 38152 | see `https://www.php.net/manual/en/features.commandline.webserver.php' | ||
| 38153 | NUM-OF-WORKERS: Before run the web server set the | ||
| 38154 | PHP_CLI_SERVER_WORKERS env variable useful for testing code against | ||
| 38155 | multiple simultaneous requests. | ||
| 38156 | |||
| 38157 | Interactively, when invoked with prefix argument, always prompt | ||
| 38158 | for PORT, HOSTNAME, DOCUMENT-ROOT and ROUTER-SCRIPT. | ||
| 38159 | |||
| 38160 | (fn &optional PORT HOSTNAME DOCUMENT-ROOT ROUTER-SCRIPT NUM-OF-WORKERS)" t) | ||
| 38161 | (autoload 'run-php "php-ts-mode" "\ | ||
| 38162 | Run an PHP interpreter as a inferior process. | ||
| 38163 | |||
| 38164 | Arguments CMD and CONFIG, default to `php-ts-mode-php-executable' | ||
| 38165 | and `php-ts-mode-php-config' respectively, control which PHP interpreter is run. | ||
| 38166 | Prompt for CMD if `php-ts-mode-php-executable' is nil. | ||
| 38167 | Optional CONFIG, if supplied, is the php.ini file to use. | ||
| 38168 | |||
| 38169 | (fn &optional CMD CONFIG)" t) | ||
| 38170 | (register-definition-prefixes "php-ts-mode" '("inferior-php-ts-mode" "php-ts-")) | ||
| 38171 | |||
| 38172 | |||
| 38173 | ;;; Generated autoloads from editorconfig.el | ||
| 38174 | |||
| 38175 | (push (purecopy '(editorconfig 0 11 0)) package--builtin-versions) | ||
| 38176 | (defvar editorconfig-mode nil "\ | ||
| 38177 | Non-nil if Editorconfig mode is enabled. | ||
| 38178 | See the `editorconfig-mode' command | ||
| 38179 | for a description of this minor mode. | ||
| 38180 | Setting this variable directly does not take effect; | ||
| 38181 | either customize it (see the info node `Easy Customization') | ||
| 38182 | or call the function `editorconfig-mode'.") | ||
| 38183 | (custom-autoload 'editorconfig-mode "editorconfig" nil) | ||
| 38184 | (autoload 'editorconfig-mode "editorconfig" "\ | ||
| 38185 | Toggle EditorConfig feature. | ||
| 38186 | |||
| 38187 | This is a global minor mode. If called interactively, toggle the | ||
| 38188 | `Editorconfig mode' mode. If the prefix argument is positive, enable | ||
| 38189 | the mode, and if it is zero or negative, disable the mode. | ||
| 38190 | |||
| 38191 | If called from Lisp, toggle the mode if ARG is `toggle'. Enable the | ||
| 38192 | mode if ARG is nil, omitted, or is a positive number. Disable the mode | ||
| 38193 | if ARG is a negative number. | ||
| 38194 | |||
| 38195 | To check whether the minor mode is enabled in the current buffer, | ||
| 38196 | evaluate `(default-value \\='editorconfig-mode)'. | ||
| 38197 | |||
| 38198 | The mode's hook is called both when the mode is enabled and when it is | ||
| 38199 | disabled. | ||
| 38200 | |||
| 38201 | (fn &optional ARG)" t) | ||
| 38202 | (register-definition-prefixes "editorconfig" '("editorconfig-")) | ||
| 38203 | |||
| 38204 | |||
| 38205 | ;;; Generated autoloads from editorconfig-conf-mode.el | ||
| 38206 | |||
| 38207 | (autoload 'editorconfig-conf-mode "editorconfig-conf-mode" "\ | ||
| 38208 | Major mode for editing .editorconfig files. | ||
| 38209 | |||
| 38210 | (fn)" t) | ||
| 38211 | (add-to-list 'auto-mode-alist '("\\.editorconfig\\'" . editorconfig-conf-mode)) | ||
| 38212 | (register-definition-prefixes "editorconfig-conf-mode" '("editorconfig-conf-mode-")) | ||
| 38213 | |||
| 38214 | |||
| 38215 | ;;; Generated autoloads from editorconfig-core.el | ||
| 38216 | |||
| 38217 | (register-definition-prefixes "editorconfig-core" '("editorconfig-core-")) | ||
| 38218 | |||
| 38219 | |||
| 38220 | ;;; Generated autoloads from editorconfig-core-handle.el | ||
| 38221 | |||
| 38222 | (register-definition-prefixes "editorconfig-core-handle" '("editorconfig-core-handle")) | ||
| 38223 | |||
| 38224 | |||
| 38225 | ;;; Generated autoloads from editorconfig-fnmatch.el | ||
| 38226 | |||
| 38227 | (register-definition-prefixes "editorconfig-fnmatch" '("editorconfig-fnmatch-")) | ||
| 38228 | |||
| 38229 | |||
| 38230 | ;;; Generated autoloads from editorconfig-tools.el | ||
| 38231 | |||
| 38232 | (autoload 'editorconfig-apply "editorconfig-tools" "\ | ||
| 38233 | Get and apply EditorConfig properties to current buffer. | ||
| 38234 | |||
| 38235 | This function does not respect the values of `editorconfig-exclude-modes' and | ||
| 38236 | `editorconfig-exclude-regexps' and always applies available properties. | ||
| 38237 | Use `editorconfig-mode-apply' instead to make use of these variables." t) | ||
| 38238 | (autoload 'editorconfig-find-current-editorconfig "editorconfig-tools" "\ | ||
| 38239 | Find the closest .editorconfig file for current file." t) | ||
| 38240 | (autoload 'editorconfig-display-current-properties "editorconfig-tools" "\ | ||
| 38241 | Display EditorConfig properties extracted for current buffer." t) | ||
| 38242 | (defalias 'describe-editorconfig-properties #'editorconfig-display-current-properties) | ||
| 38243 | (register-definition-prefixes "editorconfig-tools" '("editorconfig-mode-apply")) | ||
| 38244 | |||
| 38245 | |||
| 38246 | ;;; Generated autoloads from which-key.el | ||
| 38247 | |||
| 38248 | (push (purecopy '(which-key 3 6 1)) package--builtin-versions) | ||
| 38249 | (defvar which-key-mode nil "\ | ||
| 38250 | Non-nil if Which-Key mode is enabled. | ||
| 38251 | See the `which-key-mode' command | ||
| 38252 | for a description of this minor mode. | ||
| 38253 | Setting this variable directly does not take effect; | ||
| 38254 | either customize it (see the info node `Easy Customization') | ||
| 38255 | or call the function `which-key-mode'.") | ||
| 38256 | (custom-autoload 'which-key-mode "which-key" nil) | ||
| 38257 | (autoload 'which-key-mode "which-key" "\ | ||
| 38258 | Toggle `which-key-mode'. | ||
| 38259 | |||
| 38260 | `which-key' is a minor mode that displays the key bindings following | ||
| 38261 | your currently entered incomplete command (a prefix) in a popup. | ||
| 38262 | |||
| 38263 | For example, after enabling the minor mode, if you enter \\`C-x' and | ||
| 38264 | wait for one second (by default), the minibuffer will expand with all | ||
| 38265 | available key bindings that follow \\`C-x' (or as many as space allows | ||
| 38266 | given your settings). | ||
| 38267 | |||
| 38268 | This is a global minor mode. If called interactively, toggle the | ||
| 38269 | `Which-Key mode' mode. If the prefix argument is positive, enable the | ||
| 38270 | mode, and if it is zero or negative, disable the mode. | ||
| 38271 | |||
| 38272 | If called from Lisp, toggle the mode if ARG is `toggle'. Enable the | ||
| 38273 | mode if ARG is nil, omitted, or is a positive number. Disable the mode | ||
| 38274 | if ARG is a negative number. | ||
| 38275 | |||
| 38276 | To check whether the minor mode is enabled in the current buffer, | ||
| 38277 | evaluate `(default-value \\='which-key-mode)'. | ||
| 38278 | |||
| 38279 | The mode's hook is called both when the mode is enabled and when it is | ||
| 38280 | disabled. | ||
| 38281 | |||
| 38282 | (fn &optional ARG)" t) | ||
| 38283 | (autoload 'which-key-setup-side-window-right "which-key" "\ | ||
| 38284 | Set up side-window on right." t) | ||
| 38285 | (autoload 'which-key-setup-side-window-right-bottom "which-key" "\ | ||
| 38286 | Set up side-window on right if space allows. | ||
| 38287 | Otherwise, use bottom." t) | ||
| 38288 | (autoload 'which-key-setup-side-window-bottom "which-key" "\ | ||
| 38289 | Set up side-window that opens on bottom." t) | ||
| 38290 | (autoload 'which-key-setup-minibuffer "which-key" "\ | ||
| 38291 | Set up minibuffer display. | ||
| 38292 | Do not use this setup if you use the paging commands. Instead use | ||
| 38293 | `which-key-setup-side-window-bottom', which is nearly identical | ||
| 38294 | but more functional." t) | ||
| 38295 | (autoload 'which-key-add-keymap-based-replacements "which-key" "\ | ||
| 38296 | Replace the description of KEY using REPLACEMENT in KEYMAP. | ||
| 38297 | KEY should take a format suitable for use in `kbd'. REPLACEMENT | ||
| 38298 | should be a cons cell of the form (STRING . COMMAND) for each | ||
| 38299 | REPLACEMENT, where STRING is the replacement string and COMMAND | ||
| 38300 | is a symbol corresponding to the intended command to be | ||
| 38301 | replaced. COMMAND can be nil if the binding corresponds to a key | ||
| 38302 | prefix. An example is | ||
| 38303 | |||
| 38304 | (which-key-add-keymap-based-replacements global-map | ||
| 38305 | \"C-x w\" \\='(\"Save as\" . write-file)). | ||
| 38306 | |||
| 38307 | For backwards compatibility, REPLACEMENT can also be a string, | ||
| 38308 | but the above format is preferred, and the option to use a string | ||
| 38309 | for REPLACEMENT will eventually be removed. | ||
| 38310 | |||
| 38311 | (fn KEYMAP KEY REPLACEMENT &rest MORE)") | ||
| 38312 | (function-put 'which-key-add-keymap-based-replacements 'lisp-indent-function 'defun) | ||
| 38313 | (autoload 'which-key-add-key-based-replacements "which-key" "\ | ||
| 38314 | Replace the description of KEY-SEQUENCE with REPLACEMENT. | ||
| 38315 | KEY-SEQUENCE is a string suitable for use in `kbd'. | ||
| 38316 | REPLACEMENT may either be a string, as in | ||
| 38317 | |||
| 38318 | (which-key-add-key-based-replacements \"C-x 1\" \"maximize\") | ||
| 38319 | |||
| 38320 | a cons of two strings as in | ||
| 38321 | |||
| 38322 | (which-key-add-key-based-replacements \"C-x 8\" | ||
| 38323 | \\='(\"unicode\" . \"Unicode keys\")) | ||
| 38324 | |||
| 38325 | or a function that takes a (KEY . BINDING) cons and returns a | ||
| 38326 | replacement. | ||
| 38327 | |||
| 38328 | In the second case, the second string is used to provide a longer | ||
| 38329 | name for the keys under a prefix. | ||
| 38330 | |||
| 38331 | MORE allows you to specify additional KEY REPLACEMENT pairs. All | ||
| 38332 | replacements are added to `which-key-replacement-alist'. | ||
| 38333 | |||
| 38334 | (fn KEY-SEQUENCE REPLACEMENT &rest MORE)") | ||
| 38335 | (autoload 'which-key-add-major-mode-key-based-replacements "which-key" "\ | ||
| 38336 | Functions like `which-key-add-key-based-replacements'. | ||
| 38337 | The difference is that MODE specifies the `major-mode' that must | ||
| 38338 | be active for KEY-SEQUENCE and REPLACEMENT (MORE contains | ||
| 38339 | addition KEY-SEQUENCE REPLACEMENT pairs) to apply. | ||
| 38340 | |||
| 38341 | (fn MODE KEY-SEQUENCE REPLACEMENT &rest MORE)") | ||
| 38342 | (function-put 'which-key-add-major-mode-key-based-replacements 'lisp-indent-function 'defun) | ||
| 38343 | (autoload 'which-key-reload-key-sequence "which-key" "\ | ||
| 38344 | Simulate entering the key sequence KEY-SEQ. | ||
| 38345 | KEY-SEQ should be a list of events as produced by | ||
| 38346 | `listify-key-sequence'. If nil, KEY-SEQ defaults to | ||
| 38347 | `which-key--current-key-list'. Any prefix arguments that were | ||
| 38348 | used are reapplied to the new key sequence. | ||
| 38349 | |||
| 38350 | (fn &optional KEY-SEQ)") | ||
| 38351 | (autoload 'which-key-show-standard-help "which-key" "\ | ||
| 38352 | Call the command in `which-key--prefix-help-cmd-backup'. | ||
| 38353 | Usually this is `describe-prefix-bindings'. | ||
| 38354 | |||
| 38355 | (fn &optional _)" t) | ||
| 38356 | (autoload 'which-key-show-next-page-no-cycle "which-key" "\ | ||
| 38357 | Show next page of keys or `which-key-show-standard-help'." t) | ||
| 38358 | (autoload 'which-key-show-previous-page-no-cycle "which-key" "\ | ||
| 38359 | Show previous page of keys if one exists." t) | ||
| 38360 | (autoload 'which-key-show-next-page-cycle "which-key" "\ | ||
| 38361 | Show the next page of keys, cycling from end to beginning. | ||
| 38362 | |||
| 38363 | (fn &optional _)" t) | ||
| 38364 | (autoload 'which-key-show-previous-page-cycle "which-key" "\ | ||
| 38365 | Show the previous page of keys, cycling from beginning to end. | ||
| 38366 | |||
| 38367 | (fn &optional _)" t) | ||
| 38368 | (autoload 'which-key-show-top-level "which-key" "\ | ||
| 38369 | Show top-level bindings. | ||
| 38370 | |||
| 38371 | (fn &optional _)" t) | ||
| 38372 | (autoload 'which-key-show-major-mode "which-key" "\ | ||
| 38373 | Show top-level bindings in the map of the current major mode. | ||
| 38374 | This function will also detect evil bindings made using | ||
| 38375 | `evil-define-key' in this map. These bindings will depend on the | ||
| 38376 | current evil state. | ||
| 38377 | |||
| 38378 | (fn &optional ALL)" t) | ||
| 38379 | (autoload 'which-key-show-full-major-mode "which-key" "\ | ||
| 38380 | Show all bindings in the map of the current major mode. | ||
| 38381 | This function will also detect evil bindings made using | ||
| 38382 | `evil-define-key' in this map. These bindings will depend on the | ||
| 38383 | current evil state." t) | ||
| 38384 | (autoload 'which-key-dump-bindings "which-key" "\ | ||
| 38385 | Dump bindings from PREFIX into buffer named BUFFER-NAME. | ||
| 38386 | PREFIX should be a string suitable for `kbd'. | ||
| 38387 | |||
| 38388 | (fn PREFIX BUFFER-NAME)" t) | ||
| 38389 | (autoload 'which-key-undo-key "which-key" "\ | ||
| 38390 | Undo last keypress and force which-key update. | ||
| 38391 | |||
| 38392 | (fn &optional _)" t) | ||
| 38393 | (autoload 'which-key-C-h-dispatch "which-key" "\ | ||
| 38394 | Dispatch \\`C-h' commands by looking up key in `which-key-C-h-map'. | ||
| 38395 | This command is always accessible (from any prefix) if | ||
| 38396 | `which-key-use-C-h-commands' is non nil." t) | ||
| 38397 | (autoload 'which-key-show-keymap "which-key" "\ | ||
| 38398 | Show the top-level bindings in KEYMAP using which-key. | ||
| 38399 | KEYMAP is selected interactively from all available keymaps. | ||
| 38400 | |||
| 38401 | If NO-PAGING is non-nil, which-key will not intercept subsequent | ||
| 38402 | keypresses for the paging functionality. | ||
| 38403 | |||
| 38404 | (fn KEYMAP &optional NO-PAGING)" t) | ||
| 38405 | (autoload 'which-key-show-full-keymap "which-key" "\ | ||
| 38406 | Show all bindings in KEYMAP using which-key. | ||
| 38407 | KEYMAP is selected interactively from all available keymaps. | ||
| 38408 | |||
| 38409 | (fn KEYMAP)" t) | ||
| 38410 | (autoload 'which-key-show-minor-mode-keymap "which-key" "\ | ||
| 38411 | Show the top-level bindings in KEYMAP using which-key. | ||
| 38412 | KEYMAP is selected interactively by mode in | ||
| 38413 | `minor-mode-map-alist'. | ||
| 38414 | |||
| 38415 | (fn &optional ALL)" t) | ||
| 38416 | (autoload 'which-key-show-full-minor-mode-keymap "which-key" "\ | ||
| 38417 | Show all bindings in KEYMAP using which-key. | ||
| 38418 | KEYMAP is selected interactively by mode in | ||
| 38419 | `minor-mode-map-alist'." t) | ||
| 38420 | (register-definition-prefixes "which-key" '("evil-state" "which-key-")) | ||
| 38421 | |||
| 38078 | 38422 | ||
| 38079 | ;;; End of scraped data | 38423 | ;;; End of scraped data |
| 38080 | 38424 | ||
| 38081 | (provide 'loaddefs) | 38425 | (provide 'loaddefs) |
| 38082 | 38426 | ||
| 38083 | ;; Local Variables: | 38427 | ;; Local Variables: |
| 38084 | ;; no-byte-compile: t | ||
| 38085 | ;; version-control: never | 38428 | ;; version-control: never |
| 38086 | ;; no-update-autoloads: t | 38429 | ;; no-update-autoloads: t |
| 38087 | ;; no-native-compile: t | 38430 | ;; no-native-compile: t |
| 38431 | ;; no-byte-compile: t | ||
| 38088 | ;; coding: utf-8-emacs-unix | 38432 | ;; coding: utf-8-emacs-unix |
| 38089 | ;; End: | 38433 | ;; End: |
| 38090 | 38434 | ||