diff options
| author | Eli Zaretskii | 2025-04-10 08:04:08 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2025-04-10 08:04:08 -0400 |
| commit | aa8a5090ec102a7e39d1cc7661c6dffd27dbea67 (patch) | |
| tree | 9bdf6ce1e76fa8b930a9fbd9ae9e227f42f23e54 /lisp/ldefs-boot.el | |
| parent | bb0f84bc0bf77892b05e3720ea623dcd3431325b (diff) | |
| download | emacs-aa8a5090ec102a7e39d1cc7661c6dffd27dbea67.tar.gz emacs-aa8a5090ec102a7e39d1cc7661c6dffd27dbea67.zip | |
; Update ldefs-boot.el
Diffstat (limited to 'lisp/ldefs-boot.el')
| -rw-r--r-- | lisp/ldefs-boot.el | 624 |
1 files changed, 456 insertions, 168 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index e1e203875f4..709e12176d4 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -1452,7 +1452,7 @@ point is moved into the passwords (see `authinfo-hide-elements'). | |||
| 1452 | 1452 | ||
| 1453 | (fn)" t) | 1453 | (fn)" t) |
| 1454 | (autoload 'read-passwd "auth-source" "\ | 1454 | (autoload 'read-passwd "auth-source" "\ |
| 1455 | Read a password, prompting with PROMPT, and return it. | 1455 | Read a password, prompting with PROMPT, and return password as a string. |
| 1456 | If optional CONFIRM is non-nil, read the password twice to make sure. | 1456 | If optional CONFIRM is non-nil, read the password twice to make sure. |
| 1457 | Optional DEFAULT is a default password to use instead of empty input. | 1457 | Optional DEFAULT is a default password to use instead of empty input. |
| 1458 | 1458 | ||
| @@ -2296,7 +2296,7 @@ Optional second arg NO-HISTORY means don't record this in the | |||
| 2296 | minibuffer history list `bookmark-history'. | 2296 | minibuffer history list `bookmark-history'. |
| 2297 | 2297 | ||
| 2298 | (fn BOOKMARK-NAME &optional NO-HISTORY)" t) | 2298 | (fn BOOKMARK-NAME &optional NO-HISTORY)" t) |
| 2299 | (defalias 'bookmark-locate 'bookmark-insert-location) | 2299 | (defalias 'bookmark-locate #'bookmark-insert-location) |
| 2300 | (autoload 'bookmark-rename "bookmark" "\ | 2300 | (autoload 'bookmark-rename "bookmark" "\ |
| 2301 | Change the name of OLD-NAME bookmark to NEW-NAME name. | 2301 | Change the name of OLD-NAME bookmark to NEW-NAME name. |
| 2302 | If called from keyboard, prompt for OLD-NAME and NEW-NAME. | 2302 | If called from keyboard, prompt for OLD-NAME and NEW-NAME. |
| @@ -2314,6 +2314,8 @@ name. | |||
| 2314 | (autoload 'bookmark-insert "bookmark" "\ | 2314 | (autoload 'bookmark-insert "bookmark" "\ |
| 2315 | Insert the text of the file pointed to by bookmark BOOKMARK-NAME. | 2315 | Insert the text of the file pointed to by bookmark BOOKMARK-NAME. |
| 2316 | BOOKMARK-NAME is a bookmark name (a string), not a bookmark record. | 2316 | BOOKMARK-NAME is a bookmark name (a string), not a bookmark record. |
| 2317 | Refuse to insert bookmarks if its handler's property `bookmark-inhibit', | ||
| 2318 | which is a list, contains `insert'. | ||
| 2317 | 2319 | ||
| 2318 | You may have a problem using this function if the value of variable | 2320 | You may have a problem using this function if the value of variable |
| 2319 | `bookmark-alist' is nil. If that happens, you need to load in some | 2321 | `bookmark-alist' is nil. If that happens, you need to load in some |
| @@ -2383,8 +2385,8 @@ Display a list of existing bookmarks. | |||
| 2383 | The list is displayed in a buffer named `*Bookmark List*'. | 2385 | The list is displayed in a buffer named `*Bookmark List*'. |
| 2384 | The leftmost column displays a D if the bookmark is flagged for | 2386 | The leftmost column displays a D if the bookmark is flagged for |
| 2385 | deletion, or > if it is flagged for displaying." t) | 2387 | deletion, or > if it is flagged for displaying." t) |
| 2386 | (defalias 'list-bookmarks 'bookmark-bmenu-list) | 2388 | (defalias 'list-bookmarks #'bookmark-bmenu-list) |
| 2387 | (defalias 'edit-bookmarks 'bookmark-bmenu-list) | 2389 | (defalias 'edit-bookmarks #'bookmark-bmenu-list) |
| 2388 | (autoload 'bookmark-bmenu-search "bookmark" "\ | 2390 | (autoload 'bookmark-bmenu-search "bookmark" "\ |
| 2389 | Incremental search of bookmarks, hiding the non-matches as we go." '(bookmark-bmenu-mode)) | 2391 | Incremental search of bookmarks, hiding the non-matches as we go." '(bookmark-bmenu-mode)) |
| 2390 | (defvar menu-bar-bookmark-map (let ((map (make-sparse-keymap "Bookmark functions"))) (define-key map [load] '(menu-item "Load a Bookmark File..." bookmark-load :help "Load bookmarks from a bookmark file)")) (define-key map [write] '(menu-item "Save Bookmarks As..." bookmark-write :help "Write bookmarks to a file (reading the file name with the minibuffer)")) (define-key map [save] '(menu-item "Save Bookmarks" bookmark-save :help "Save currently defined bookmarks")) (define-key map [edit] '(menu-item "Edit Bookmark List" bookmark-bmenu-list :help "Display a list of existing bookmarks")) (define-key map [delete] '(menu-item "Delete Bookmark..." bookmark-delete :help "Delete a bookmark from the bookmark list")) (define-key map [delete-all] '(menu-item "Delete all Bookmarks..." bookmark-delete-all :help "Delete all bookmarks from the bookmark list")) (define-key map [rename] '(menu-item "Rename Bookmark..." bookmark-rename :help "Change the name of a bookmark")) (define-key map [locate] '(menu-item "Insert Location..." bookmark-locate :help "Insert the name of the file associated with a bookmark")) (define-key map [insert] '(menu-item "Insert Contents..." bookmark-insert :help "Insert the text of the file pointed to by a bookmark")) (define-key map [set] '(menu-item "Set Bookmark..." bookmark-set :help "Set a bookmark named inside a file.")) (define-key map [jump] '(menu-item "Jump to Bookmark..." bookmark-jump :help "Jump to a bookmark (a point in some file)")) map)) | 2392 | (defvar menu-bar-bookmark-map (let ((map (make-sparse-keymap "Bookmark functions"))) (define-key map [load] '(menu-item "Load a Bookmark File..." bookmark-load :help "Load bookmarks from a bookmark file)")) (define-key map [write] '(menu-item "Save Bookmarks As..." bookmark-write :help "Write bookmarks to a file (reading the file name with the minibuffer)")) (define-key map [save] '(menu-item "Save Bookmarks" bookmark-save :help "Save currently defined bookmarks")) (define-key map [edit] '(menu-item "Edit Bookmark List" bookmark-bmenu-list :help "Display a list of existing bookmarks")) (define-key map [delete] '(menu-item "Delete Bookmark..." bookmark-delete :help "Delete a bookmark from the bookmark list")) (define-key map [delete-all] '(menu-item "Delete all Bookmarks..." bookmark-delete-all :help "Delete all bookmarks from the bookmark list")) (define-key map [rename] '(menu-item "Rename Bookmark..." bookmark-rename :help "Change the name of a bookmark")) (define-key map [locate] '(menu-item "Insert Location..." bookmark-locate :help "Insert the name of the file associated with a bookmark")) (define-key map [insert] '(menu-item "Insert Contents..." bookmark-insert :help "Insert the text of the file pointed to by a bookmark")) (define-key map [set] '(menu-item "Set Bookmark..." bookmark-set :help "Set a bookmark named inside a file.")) (define-key map [jump] '(menu-item "Jump to Bookmark..." bookmark-jump :help "Jump to a bookmark (a point in some file)")) map)) |
| @@ -4082,11 +4084,6 @@ See the documentation of `define-ccl-program' for the detail of CCL program. | |||
| 4082 | (register-definition-prefixes "ccl" '("ccl-")) | 4084 | (register-definition-prefixes "ccl" '("ccl-")) |
| 4083 | 4085 | ||
| 4084 | 4086 | ||
| 4085 | ;;; Generated autoloads from cdl.el | ||
| 4086 | |||
| 4087 | (register-definition-prefixes "cdl" '("cdl-")) | ||
| 4088 | |||
| 4089 | |||
| 4090 | ;;; Generated autoloads from cedet/cedet.el | 4087 | ;;; Generated autoloads from cedet/cedet.el |
| 4091 | 4088 | ||
| 4092 | (push '(cedet 2 0) package--builtin-versions) | 4089 | (push '(cedet 2 0) package--builtin-versions) |
| @@ -4222,7 +4219,9 @@ Returns non-nil if any false statements are found. | |||
| 4222 | (put 'checkdoc-arguments-in-order-flag 'safe-local-variable #'booleanp) | 4219 | (put 'checkdoc-arguments-in-order-flag 'safe-local-variable #'booleanp) |
| 4223 | (put 'checkdoc-package-keywords-flag 'safe-local-variable #'booleanp) | 4220 | (put 'checkdoc-package-keywords-flag 'safe-local-variable #'booleanp) |
| 4224 | (put 'checkdoc-verb-check-experimental-flag 'safe-local-variable #'booleanp) | 4221 | (put 'checkdoc-verb-check-experimental-flag 'safe-local-variable #'booleanp) |
| 4222 | (put 'checkdoc-allow-quoting-nil-and-t 'safe-local-variable #'booleanp) | ||
| 4225 | (put 'checkdoc-symbol-words 'safe-local-variable #'list-of-strings-p) | 4223 | (put 'checkdoc-symbol-words 'safe-local-variable #'list-of-strings-p) |
| 4224 | (put 'checkdoc-arguments-missing-flag 'safe-local-variable 'booleanp) | ||
| 4226 | (put 'checkdoc-proper-noun-regexp 'safe-local-variable 'stringp) | 4225 | (put 'checkdoc-proper-noun-regexp 'safe-local-variable 'stringp) |
| 4227 | (put 'checkdoc-common-verbs-regexp 'safe-local-variable 'stringp) | 4226 | (put 'checkdoc-common-verbs-regexp 'safe-local-variable 'stringp) |
| 4228 | (autoload 'checkdoc "checkdoc" "\ | 4227 | (autoload 'checkdoc "checkdoc" "\ |
| @@ -4578,7 +4577,7 @@ printer proceeds to the next function on the list. | |||
| 4578 | 4577 | ||
| 4579 | This variable is not used at present, but it is defined in hopes that | 4578 | This variable is not used at present, but it is defined in hopes that |
| 4580 | a future Emacs interpreter will be able to use it.") | 4579 | a future Emacs interpreter will be able to use it.") |
| 4581 | (autoload 'cl-incf "cl-lib" "\ | 4580 | (defalias 'cl-incf #'incf "\ |
| 4582 | Increment PLACE by X (1 by default). | 4581 | Increment PLACE by X (1 by default). |
| 4583 | PLACE may be a symbol, or any generalized variable allowed by `setf'. | 4582 | PLACE may be a symbol, or any generalized variable allowed by `setf'. |
| 4584 | The return value is the incremented value of PLACE. | 4583 | The return value is the incremented value of PLACE. |
| @@ -4586,7 +4585,8 @@ The return value is the incremented value of PLACE. | |||
| 4586 | If X is specified, it should be an expression that should | 4585 | If X is specified, it should be an expression that should |
| 4587 | evaluate to a number. | 4586 | evaluate to a number. |
| 4588 | 4587 | ||
| 4589 | (fn PLACE &optional X)" nil t) | 4588 | This macro is considered deprecated in favor of the built-in macro |
| 4589 | `incf' that was added in Emacs 31.1.") | ||
| 4590 | (defvar cl-old-struct-compat-mode nil "\ | 4590 | (defvar cl-old-struct-compat-mode nil "\ |
| 4591 | Non-nil if Cl-Old-Struct-Compat mode is enabled. | 4591 | Non-nil if Cl-Old-Struct-Compat mode is enabled. |
| 4592 | See the `cl-old-struct-compat-mode' command | 4592 | See the `cl-old-struct-compat-mode' command |
| @@ -5392,27 +5392,29 @@ list.") | |||
| 5392 | 5392 | ||
| 5393 | ;;; Generated autoloads from emacs-lisp/cond-star.el | 5393 | ;;; Generated autoloads from emacs-lisp/cond-star.el |
| 5394 | 5394 | ||
| 5395 | (push '(cond-star 1 0) package--builtin-versions) | ||
| 5395 | (autoload 'cond* "cond-star" "\ | 5396 | (autoload 'cond* "cond-star" "\ |
| 5396 | Extended form of traditional Lisp `cond' construct. | 5397 | Extended form of traditional Lisp `cond' construct. |
| 5397 | A `cond*' construct is a series of clauses, and a clause | 5398 | A `cond*' construct is a series of clauses, and a clause |
| 5398 | normally has the form (CONDITION BODY...). | 5399 | normally has the form (CONDITION BODY...). |
| 5399 | 5400 | ||
| 5400 | CONDITION can be a Lisp expression, as in `cond'. | 5401 | CONDITION can be a Lisp expression, as in `cond'. |
| 5401 | Or it can be one of `(pcase* PATTERN DATUM)', | 5402 | Or it can be one of`(bind* BINDINGS...)', `(match* PATTERN DATUM)', |
| 5402 | `(bind* BINDINGS...)', or `(match* PATTERN DATUM)', | 5403 | or `(pcase* PATTERN DATUM)', |
| 5404 | |||
| 5405 | `(bind* BINDINGS...)' means to bind BINDINGS (as if they were in `let*') | ||
| 5406 | for the body of the clause, and all subsequent clauses, since the `bind*' | ||
| 5407 | clause is always a non-exit clause. As a condition, it counts as true | ||
| 5408 | and runs the body of the clause if the first binding's value is non-nil. | ||
| 5409 | |||
| 5410 | `(match* PATTERN DATUM)' means to match DATUM against the pattern PATTERN | ||
| 5411 | For its patterns, see `match*'. | ||
| 5412 | The condition counts as true if PATTERN matches DATUM. | ||
| 5403 | 5413 | ||
| 5404 | `(pcase* PATTERN DATUM)' means to match DATUM against the | 5414 | `(pcase* PATTERN DATUM)' means to match DATUM against the |
| 5405 | pattern PATTERN, using the same pattern syntax as `pcase'. | 5415 | pattern PATTERN, using the same pattern syntax as `pcase'. |
| 5406 | The condition counts as true if PATTERN matches DATUM. | 5416 | The condition counts as true if PATTERN matches DATUM. |
| 5407 | 5417 | ||
| 5408 | `(bind* BINDINGS...)' means to bind BINDINGS (as if they were in `let*') | ||
| 5409 | for the body of the clause. As a condition, it counts as true | ||
| 5410 | if the first binding's value is non-nil. All the bindings are made | ||
| 5411 | unconditionally for whatever scope they cover. | ||
| 5412 | |||
| 5413 | `(match* PATTERN DATUM)' is an alternative to `pcase*' that uses another | ||
| 5414 | syntax for its patterns, see `match*'. | ||
| 5415 | |||
| 5416 | When a clause's condition is true, and it exits the `cond*' | 5418 | When a clause's condition is true, and it exits the `cond*' |
| 5417 | or is the last clause, the value of the last expression | 5419 | or is the last clause, the value of the last expression |
| 5418 | in its body becomes the return value of the `cond*' construct. | 5420 | in its body becomes the return value of the `cond*' construct. |
| @@ -5420,12 +5422,12 @@ in its body becomes the return value of the `cond*' construct. | |||
| 5420 | Non-exit clause: | 5422 | Non-exit clause: |
| 5421 | 5423 | ||
| 5422 | If a clause has only one element, or if its first element is | 5424 | If a clause has only one element, or if its first element is |
| 5423 | a `bind*' clause, this clause never exits the `cond*' construct. | 5425 | t or a `bind*' clause, this clause never exits the `cond*' construct. |
| 5424 | Instead, control always falls through to the next clause (if any). | 5426 | Instead, control always falls through to the next clause (if any). |
| 5425 | All bindings made in CONDITION for the BODY of the non-exit clause | 5427 | All bindings made in CONDITION for the BODY of the non-exit clause |
| 5426 | are passed along to the rest of the clauses in this `cond*' construct. | 5428 | are passed along to the rest of the clauses in this `cond*' construct. |
| 5427 | 5429 | ||
| 5428 | \\[match*\\] for documentation of the patterns for use in `match*'. | 5430 | \\[match*] for documentation of the patterns for use in `match*'. |
| 5429 | 5431 | ||
| 5430 | (fn &rest CLAUSES)" nil t) | 5432 | (fn &rest CLAUSES)" nil t) |
| 5431 | (register-definition-prefixes "cond-star" '("cond*-" "match*")) | 5433 | (register-definition-prefixes "cond-star" '("cond*-" "match*")) |
| @@ -5585,6 +5587,10 @@ For details see `conf-mode'. | |||
| 5585 | Terminal=false | 5587 | Terminal=false |
| 5586 | 5588 | ||
| 5587 | (fn)" t) | 5589 | (fn)" t) |
| 5590 | (autoload 'conf-npmrc-mode "conf-mode" "\ | ||
| 5591 | |||
| 5592 | |||
| 5593 | (fn)" t) | ||
| 5588 | (register-definition-prefixes "conf-mode" '("conf-")) | 5594 | (register-definition-prefixes "conf-mode" '("conf-")) |
| 5589 | 5595 | ||
| 5590 | 5596 | ||
| @@ -7716,7 +7722,7 @@ The directory name or wildcard spec that this Dired directory lists. | |||
| 7716 | Local to each Dired buffer. May be a list, in which case the car is the | 7722 | Local to each Dired buffer. May be a list, in which case the car is the |
| 7717 | directory name and the cdr is the list of files to mention. | 7723 | directory name and the cdr is the list of files to mention. |
| 7718 | The directory name must be absolute, but need not be fully expanded.") | 7724 | The directory name must be absolute, but need not be fully expanded.") |
| 7719 | (define-key ctl-x-map "d" 'dired) | 7725 | (keymap-set ctl-x-map "d" #'dired) |
| 7720 | (autoload 'dired "dired" "\ | 7726 | (autoload 'dired "dired" "\ |
| 7721 | \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it. | 7727 | \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it. |
| 7722 | Optional second argument SWITCHES specifies the options to be used | 7728 | Optional second argument SWITCHES specifies the options to be used |
| @@ -7741,17 +7747,17 @@ Type \\[describe-mode] after entering Dired for more info. | |||
| 7741 | If DIRNAME is already in a Dired buffer, that buffer is used without refresh. | 7747 | If DIRNAME is already in a Dired buffer, that buffer is used without refresh. |
| 7742 | 7748 | ||
| 7743 | (fn DIRNAME &optional SWITCHES)" t) | 7749 | (fn DIRNAME &optional SWITCHES)" t) |
| 7744 | (define-key ctl-x-4-map "d" 'dired-other-window) | 7750 | (keymap-set ctl-x-4-map "d" #'dired-other-window) |
| 7745 | (autoload 'dired-other-window "dired" "\ | 7751 | (autoload 'dired-other-window "dired" "\ |
| 7746 | \"Edit\" directory DIRNAME. Like `dired' but select in another window. | 7752 | \"Edit\" directory DIRNAME. Like `dired' but select in another window. |
| 7747 | 7753 | ||
| 7748 | (fn DIRNAME &optional SWITCHES)" t) | 7754 | (fn DIRNAME &optional SWITCHES)" t) |
| 7749 | (define-key ctl-x-5-map "d" 'dired-other-frame) | 7755 | (keymap-set ctl-x-5-map "d" #'dired-other-frame) |
| 7750 | (autoload 'dired-other-frame "dired" "\ | 7756 | (autoload 'dired-other-frame "dired" "\ |
| 7751 | \"Edit\" directory DIRNAME. Like `dired' but make a new frame. | 7757 | \"Edit\" directory DIRNAME. Like `dired' but make a new frame. |
| 7752 | 7758 | ||
| 7753 | (fn DIRNAME &optional SWITCHES)" t) | 7759 | (fn DIRNAME &optional SWITCHES)" t) |
| 7754 | (define-key tab-prefix-map "d" 'dired-other-tab) | 7760 | (keymap-set tab-prefix-map "d" #'dired-other-tab) |
| 7755 | (autoload 'dired-other-tab "dired" "\ | 7761 | (autoload 'dired-other-tab "dired" "\ |
| 7756 | \"Edit\" directory DIRNAME. Like `dired' but make a new tab. | 7762 | \"Edit\" directory DIRNAME. Like `dired' but make a new tab. |
| 7757 | 7763 | ||
| @@ -8117,7 +8123,7 @@ modes derived from `text-mode'\". An element with value t means \"use\" | |||
| 8117 | and nil means \"don't use\". There's an implicit nil at the end of the | 8123 | and nil means \"don't use\". There's an implicit nil at the end of the |
| 8118 | list.") | 8124 | list.") |
| 8119 | (custom-autoload 'global-display-fill-column-indicator-modes "display-fill-column-indicator" t) | 8125 | (custom-autoload 'global-display-fill-column-indicator-modes "display-fill-column-indicator" t) |
| 8120 | (register-definition-prefixes "display-fill-column-indicator" '("display-fill-column-indicator--turn-on")) | 8126 | (register-definition-prefixes "display-fill-column-indicator" '("display-fill-column-indicator-" "fill-indicator--set-warning")) |
| 8121 | 8127 | ||
| 8122 | 8128 | ||
| 8123 | ;;; Generated autoloads from display-line-numbers.el | 8129 | ;;; Generated autoloads from display-line-numbers.el |
| @@ -8509,7 +8515,6 @@ INIT-VALUE LIGHTER KEYMAP. | |||
| 8509 | (fn MODE DOC [KEYWORD VAL ... &rest BODY])" nil t) | 8515 | (fn MODE DOC [KEYWORD VAL ... &rest BODY])" nil t) |
| 8510 | (function-put 'define-minor-mode 'doc-string-elt 2) | 8516 | (function-put 'define-minor-mode 'doc-string-elt 2) |
| 8511 | (function-put 'define-minor-mode 'lisp-indent-function 'defun) | 8517 | (function-put 'define-minor-mode 'lisp-indent-function 'defun) |
| 8512 | (defalias 'define-global-minor-mode #'define-globalized-minor-mode) | ||
| 8513 | (autoload 'define-globalized-minor-mode "easy-mmode" "\ | 8518 | (autoload 'define-globalized-minor-mode "easy-mmode" "\ |
| 8514 | Make a global mode GLOBAL-MODE corresponding to buffer-local minor MODE. | 8519 | Make a global mode GLOBAL-MODE corresponding to buffer-local minor MODE. |
| 8515 | TURN-ON is a function that will be called with no args in every buffer | 8520 | TURN-ON is a function that will be called with no args in every buffer |
| @@ -8592,6 +8597,7 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). | |||
| 8592 | (function-put 'easy-mmode-defsyntax 'lisp-indent-function 1) | 8597 | (function-put 'easy-mmode-defsyntax 'lisp-indent-function 1) |
| 8593 | (define-obsolete-function-alias 'easy-mmode-define-minor-mode #'define-minor-mode "30.1") | 8598 | (define-obsolete-function-alias 'easy-mmode-define-minor-mode #'define-minor-mode "30.1") |
| 8594 | (define-obsolete-function-alias 'easy-mmode-define-global-mode #'define-globalized-minor-mode "30.1") | 8599 | (define-obsolete-function-alias 'easy-mmode-define-global-mode #'define-globalized-minor-mode "30.1") |
| 8600 | (define-obsolete-function-alias 'define-global-minor-mode #'define-globalized-minor-mode "31.1") | ||
| 8595 | (register-definition-prefixes "easy-mmode" '("easy-mmode-")) | 8601 | (register-definition-prefixes "easy-mmode" '("easy-mmode-")) |
| 8596 | 8602 | ||
| 8597 | 8603 | ||
| @@ -8988,16 +8994,6 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. | |||
| 8988 | (register-definition-prefixes "ebuff-menu" '("Electric-buffer-menu-" "electric-buffer-")) | 8994 | (register-definition-prefixes "ebuff-menu" '("Electric-buffer-menu-" "electric-buffer-")) |
| 8989 | 8995 | ||
| 8990 | 8996 | ||
| 8991 | ;;; Generated autoloads from echistory.el | ||
| 8992 | |||
| 8993 | (autoload 'Electric-command-history-redo-expression "echistory" "\ | ||
| 8994 | Edit current history line in minibuffer and execute result. | ||
| 8995 | With prefix arg NOCONFIRM, execute current line as-is without editing. | ||
| 8996 | |||
| 8997 | (fn &optional NOCONFIRM)" t) | ||
| 8998 | (register-definition-prefixes "echistory" '("Electric-history-" "electric-")) | ||
| 8999 | |||
| 9000 | |||
| 9001 | ;;; Generated autoloads from ecomplete.el | 8997 | ;;; Generated autoloads from ecomplete.el |
| 9002 | 8998 | ||
| 9003 | (autoload 'ecomplete-setup "ecomplete" "\ | 8999 | (autoload 'ecomplete-setup "ecomplete" "\ |
| @@ -9117,7 +9113,12 @@ arguments after setting up the Ediff buffers. | |||
| 9117 | (autoload 'ediff-current-file "ediff" "\ | 9113 | (autoload 'ediff-current-file "ediff" "\ |
| 9118 | Start ediff between current buffer and its file on disk. | 9114 | Start ediff between current buffer and its file on disk. |
| 9119 | This command can be used instead of `revert-buffer'. If there is | 9115 | This command can be used instead of `revert-buffer'. If there is |
| 9120 | nothing to revert then this command fails." t) | 9116 | nothing to revert then this command fails. |
| 9117 | |||
| 9118 | Non-interactively, STARTUP-HOOKS is a list of functions that Emacs calls | ||
| 9119 | without arguments after setting up the Ediff buffers. | ||
| 9120 | |||
| 9121 | (fn &optional STARTUP-HOOKS)" t) | ||
| 9121 | (autoload 'ediff-backup "ediff" "\ | 9122 | (autoload 'ediff-backup "ediff" "\ |
| 9122 | Run Ediff on FILE and its backup file. | 9123 | Run Ediff on FILE and its backup file. |
| 9123 | Uses the latest backup, if there are several numerical backups. | 9124 | Uses the latest backup, if there are several numerical backups. |
| @@ -9687,7 +9688,62 @@ BUFFER is put back into its original major mode. | |||
| 9687 | 9688 | ||
| 9688 | ;;; Generated autoloads from emacs-lisp/eieio.el | 9689 | ;;; Generated autoloads from emacs-lisp/eieio.el |
| 9689 | 9690 | ||
| 9690 | (push '(eieio 1 4) package--builtin-versions) | 9691 | (autoload 'defclass "eieio" "\ |
| 9692 | Define NAME as a new class derived from SUPERCLASS with SLOTS. | ||
| 9693 | OPTIONS-AND-DOC is used as the class' options and base documentation. | ||
| 9694 | SUPERCLASSES is a list of superclasses to inherit from, with SLOTS | ||
| 9695 | being the slots residing in that class definition. Supported tags are: | ||
| 9696 | |||
| 9697 | :initform - Initializing form. | ||
| 9698 | :initarg - Tag used during initialization. | ||
| 9699 | :accessor - Tag used to create a function to access this slot. | ||
| 9700 | :allocation - Specify where the value is stored. | ||
| 9701 | Defaults to `:instance', but could also be `:class'. | ||
| 9702 | :writer - A function symbol which will `write' an object's slot. | ||
| 9703 | :reader - A function symbol which will `read' an object. | ||
| 9704 | :type - The type of data allowed in this slot (see `typep'). | ||
| 9705 | :documentation | ||
| 9706 | - A string documenting use of this slot. | ||
| 9707 | |||
| 9708 | The following are extensions on CLOS: | ||
| 9709 | :custom - When customizing an object, the custom :type. Public only. | ||
| 9710 | :label - A text string label used for a slot when customizing. | ||
| 9711 | :group - Name of a customization group this slot belongs in. | ||
| 9712 | :printer - A function to call to print the value of a slot. | ||
| 9713 | See `eieio-override-prin1' as an example. | ||
| 9714 | |||
| 9715 | A class can also have optional options. These options happen in place | ||
| 9716 | of documentation (including a :documentation tag), in addition to | ||
| 9717 | documentation, or not at all. Supported options are: | ||
| 9718 | |||
| 9719 | :documentation - The doc-string used for this class. | ||
| 9720 | |||
| 9721 | Options added to EIEIO: | ||
| 9722 | |||
| 9723 | :allow-nil-initform - Non-nil to skip typechecking of null initforms. | ||
| 9724 | :custom-groups - List of custom group names. Organizes slots into | ||
| 9725 | reasonable groups for customizations. | ||
| 9726 | :abstract - Non-nil to prevent instances of this class. | ||
| 9727 | If a string, use as an error string if someone does | ||
| 9728 | try to make an instance. | ||
| 9729 | :method-invocation-order | ||
| 9730 | - Control the method invocation order if there is | ||
| 9731 | multiple inheritance. Valid values are: | ||
| 9732 | :breadth-first - The default. | ||
| 9733 | :depth-first | ||
| 9734 | |||
| 9735 | Options in CLOS not supported in EIEIO: | ||
| 9736 | |||
| 9737 | :metaclass - Class to use in place of `standard-class' | ||
| 9738 | :default-initargs - Initargs to use when initializing new objects of | ||
| 9739 | this class. | ||
| 9740 | |||
| 9741 | Due to the way class options are set up, you can add any tags you wish, | ||
| 9742 | and reference them using the function `class-option'. | ||
| 9743 | |||
| 9744 | (fn NAME SUPERCLASSES SLOTS &rest OPTIONS-AND-DOC)" nil t) | ||
| 9745 | (function-put 'defclass 'doc-string-elt 4) | ||
| 9746 | (function-put 'defclass 'lisp-indent-function 'defun) | ||
| 9691 | (autoload 'make-instance "eieio" "\ | 9747 | (autoload 'make-instance "eieio" "\ |
| 9692 | Make a new instance of CLASS based on INITARGS. | 9748 | Make a new instance of CLASS based on INITARGS. |
| 9693 | For example: | 9749 | For example: |
| @@ -9700,7 +9756,7 @@ for each slot. For example: | |||
| 9700 | (make-instance \\='foo :slot1 value1 :slotN valueN) | 9756 | (make-instance \\='foo :slot1 value1 :slotN valueN) |
| 9701 | 9757 | ||
| 9702 | (fn CLASS &rest INITARGS)") | 9758 | (fn CLASS &rest INITARGS)") |
| 9703 | (register-definition-prefixes "eieio" '("child-of-class-p" "defclass" "eieio-" "find-class" "obj" "oref" "oset" "same-class-p" "set-slot-value" "slot-" "with-slots")) | 9759 | (register-definition-prefixes "eieio" '("child-of-class-p" "eieio-" "find-class" "obj" "oref" "oset" "same-class-p" "set-slot-value" "slot-" "with-slots")) |
| 9704 | 9760 | ||
| 9705 | 9761 | ||
| 9706 | ;;; Generated autoloads from emacs-lisp/eieio-base.el | 9762 | ;;; Generated autoloads from emacs-lisp/eieio-base.el |
| @@ -10134,7 +10190,7 @@ name (which will be attached to the mail). You will end up in a | |||
| 10134 | Message buffer where you can explain more about the patch. | 10190 | Message buffer where you can explain more about the patch. |
| 10135 | 10191 | ||
| 10136 | (fn SUBJECT FILE)" t) | 10192 | (fn SUBJECT FILE)" t) |
| 10137 | (register-definition-prefixes "emacsbug" '("report-emacs-bug-")) | 10193 | (register-definition-prefixes "emacsbug" '("report-emacs-bug-" "submit-emacs-patch-excluded-maintainers")) |
| 10138 | 10194 | ||
| 10139 | 10195 | ||
| 10140 | ;;; Generated autoloads from vc/emerge.el | 10196 | ;;; Generated autoloads from vc/emerge.el |
| @@ -10658,8 +10714,8 @@ Example client certificate (CertFP) usage: | |||
| 10658 | 10714 | ||
| 10659 | (erc-tls :server \"irc.libera.chat\" :port 6697 | 10715 | (erc-tls :server \"irc.libera.chat\" :port 6697 |
| 10660 | :client-certificate | 10716 | :client-certificate |
| 10661 | \\='(\"/home/bandali/my-cert.key\" | 10717 | \\='(\"/home/bandali/my-key.pem\" |
| 10662 | \"/home/bandali/my-cert.crt\")) | 10718 | \"/home/bandali/my-cert.pem\")) |
| 10663 | 10719 | ||
| 10664 | See the alternative entry-point command `erc' as well as Info | 10720 | See the alternative entry-point command `erc' as well as Info |
| 10665 | node `(erc) Connecting' for a fuller description of the various | 10721 | node `(erc) Connecting' for a fuller description of the various |
| @@ -10939,26 +10995,29 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test). | |||
| 10939 | (autoload 'ert-font-lock-deftest "ert-font-lock" "\ | 10995 | (autoload 'ert-font-lock-deftest "ert-font-lock" "\ |
| 10940 | Define test NAME (a symbol) using assertions from TEST-STR. | 10996 | Define test NAME (a symbol) using assertions from TEST-STR. |
| 10941 | 10997 | ||
| 10942 | Other than MAJOR-MODE and TEST-STR parameters, this macro accepts | 10998 | The MAJOR-MODE symbol determines the syntax and font lock of TEST-STR. |
| 10943 | the same parameters and keywords as `ert-deftest' and is intended | ||
| 10944 | to be used through `ert'. | ||
| 10945 | 10999 | ||
| 10946 | (fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE TEST-STR)" nil t) | 11000 | Except for the MAJOR-MODE and TEST-STR parameters, this macro accepts |
| 10947 | (function-put 'ert-font-lock-deftest 'doc-string-elt 3) | 11001 | the same arguments and keywords as `ert-deftest' and is intended to be |
| 10948 | (function-put 'ert-font-lock-deftest 'lisp-indent-function 2) | 11002 | used through `ert'. |
| 11003 | |||
| 11004 | (fn NAME [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE TEST-STR)" nil t) | ||
| 11005 | (function-put 'ert-font-lock-deftest 'doc-string-elt 2) | ||
| 11006 | (function-put 'ert-font-lock-deftest 'lisp-indent-function 1) | ||
| 10949 | (autoload 'ert-font-lock-deftest-file "ert-font-lock" "\ | 11007 | (autoload 'ert-font-lock-deftest-file "ert-font-lock" "\ |
| 10950 | Define test NAME (a symbol) using assertions from FILE. | 11008 | Define test NAME (a symbol) using assertions from FILE. |
| 10951 | 11009 | ||
| 10952 | FILE - path to a file with assertions in ERT resource director as | 11010 | FILE names a file with assertions in the ERT resource directory, as |
| 10953 | return by `ert-resource-directory'. | 11011 | returned by `ert-resource-directory'. The MAJOR-MODE symbol determines |
| 11012 | the syntax and font lock of FILE's contents. | ||
| 10954 | 11013 | ||
| 10955 | Other than MAJOR-MODE and FILE parameters, this macro accepts the | 11014 | Except for the MAJOR-MODE and FILE parameters, this macro accepts the |
| 10956 | same parameters and keywords as `ert-deftest' and is intended to | 11015 | same arguments and keywords as `ert-deftest' and is intended to be used |
| 10957 | be used through `ert'. | 11016 | through `ert'. |
| 10958 | 11017 | ||
| 10959 | (fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE FILE)" nil t) | 11018 | (fn NAME [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE FILE)" nil t) |
| 10960 | (function-put 'ert-font-lock-deftest-file 'doc-string-elt 3) | 11019 | (function-put 'ert-font-lock-deftest-file 'doc-string-elt 2) |
| 10961 | (function-put 'ert-font-lock-deftest-file 'lisp-indent-function 2) | 11020 | (function-put 'ert-font-lock-deftest-file 'lisp-indent-function 1) |
| 10962 | (autoload 'ert-font-lock-test-string "ert-font-lock" "\ | 11021 | (autoload 'ert-font-lock-test-string "ert-font-lock" "\ |
| 10963 | Check font faces in TEST-STRING set by MODE. | 11022 | Check font faces in TEST-STRING set by MODE. |
| 10964 | 11023 | ||
| @@ -10976,8 +11035,6 @@ The function is meant to be run from within an ERT test. | |||
| 10976 | 11035 | ||
| 10977 | ;;; Generated autoloads from emacs-lisp/ert-x.el | 11036 | ;;; Generated autoloads from emacs-lisp/ert-x.el |
| 10978 | 11037 | ||
| 10979 | (autoload 'ert-kill-all-test-buffers "ert-x" "\ | ||
| 10980 | Kill all test buffers that are still live." t) | ||
| 10981 | (register-definition-prefixes "ert-x" '("ert-")) | 11038 | (register-definition-prefixes "ert-x" '("ert-")) |
| 10982 | 11039 | ||
| 10983 | 11040 | ||
| @@ -11893,7 +11950,11 @@ instead of `browse-url-new-window-flag'. | |||
| 11893 | 11950 | ||
| 11894 | (fn URL &optional NEW-WINDOW)") | 11951 | (fn URL &optional NEW-WINDOW)") |
| 11895 | (autoload 'eww-list-bookmarks "eww" "\ | 11952 | (autoload 'eww-list-bookmarks "eww" "\ |
| 11896 | Display the bookmarks." t) | 11953 | Display the eww bookmarks. |
| 11954 | Optional argument BUILD-ONLY, when non-nil, means to build the buffer | ||
| 11955 | without popping it. | ||
| 11956 | |||
| 11957 | (fn &optional BUILD-ONLY)" t) | ||
| 11897 | (autoload 'eww-bookmark-jump "eww" "\ | 11958 | (autoload 'eww-bookmark-jump "eww" "\ |
| 11898 | Default bookmark handler for EWW buffers. | 11959 | Default bookmark handler for EWW buffers. |
| 11899 | 11960 | ||
| @@ -13372,10 +13433,6 @@ The mode's hook is called both when the mode is enabled and when it is | |||
| 13372 | disabled. | 13433 | disabled. |
| 13373 | 13434 | ||
| 13374 | (fn &optional ARG)" t) | 13435 | (fn &optional ARG)" t) |
| 13375 | (autoload 'turn-on-flyspell "flyspell" "\ | ||
| 13376 | Unconditionally turn on Flyspell mode.") | ||
| 13377 | (autoload 'turn-off-flyspell "flyspell" "\ | ||
| 13378 | Unconditionally turn off Flyspell mode.") | ||
| 13379 | (autoload 'flyspell--mode-off "flyspell" "\ | 13436 | (autoload 'flyspell--mode-off "flyspell" "\ |
| 13380 | Turn Flyspell mode off.") | 13437 | Turn Flyspell mode off.") |
| 13381 | (autoload 'flyspell-region "flyspell" "\ | 13438 | (autoload 'flyspell-region "flyspell" "\ |
| @@ -13387,6 +13444,10 @@ of a misspelled word removed when you've corrected it. | |||
| 13387 | (fn BEG END)" t) | 13444 | (fn BEG END)" t) |
| 13388 | (autoload 'flyspell-buffer "flyspell" "\ | 13445 | (autoload 'flyspell-buffer "flyspell" "\ |
| 13389 | Flyspell whole buffer." t) | 13446 | Flyspell whole buffer." t) |
| 13447 | (define-obsolete-function-alias 'turn-on-flyspell #'flyspell-mode "31.1") | ||
| 13448 | (autoload 'turn-off-flyspell "flyspell" "\ | ||
| 13449 | Unconditionally turn off Flyspell mode.") | ||
| 13450 | (make-obsolete 'turn-off-flyspell 'flyspell-mode "31.1") | ||
| 13390 | (register-definition-prefixes "flyspell" '("flyspell-" "mail-mode-flyspell-verify" "make-flyspell-overlay" "sgml-mode-flyspell-verify" "tex")) | 13451 | (register-definition-prefixes "flyspell" '("flyspell-" "mail-mode-flyspell-verify" "make-flyspell-overlay" "sgml-mode-flyspell-verify" "tex")) |
| 13391 | 13452 | ||
| 13392 | 13453 | ||
| @@ -15041,6 +15102,11 @@ Major mode for editing Go, powered by tree-sitter. | |||
| 15041 | Major mode for editing go.mod files, powered by tree-sitter. | 15102 | Major mode for editing go.mod files, powered by tree-sitter. |
| 15042 | 15103 | ||
| 15043 | (fn)" t) | 15104 | (fn)" t) |
| 15105 | (autoload 'go-work-ts-mode "go-ts-mode" "\ | ||
| 15106 | Major mode for editing go.work files, powered by tree-sitter. | ||
| 15107 | |||
| 15108 | (fn)" t) | ||
| 15109 | (add-to-list 'auto-mode-alist '("/go\\.work\\'" . go-work-ts-mode)) | ||
| 15044 | (register-definition-prefixes "go-ts-mode" '("go-")) | 15110 | (register-definition-prefixes "go-ts-mode" '("go-")) |
| 15045 | 15111 | ||
| 15046 | 15112 | ||
| @@ -15624,6 +15690,30 @@ For example, (setf (cadr x) y) is equivalent to (setcar (cdr x) y). | |||
| 15624 | The return value is the last VAL in the list. | 15690 | The return value is the last VAL in the list. |
| 15625 | 15691 | ||
| 15626 | (fn PLACE VAL PLACE VAL ...)" nil t) | 15692 | (fn PLACE VAL PLACE VAL ...)" nil t) |
| 15693 | (autoload 'incf "gv" "\ | ||
| 15694 | Increment generalized variable PLACE by DELTA (default to 1). | ||
| 15695 | |||
| 15696 | The DELTA is first added to PLACE, and then stored in PLACE. | ||
| 15697 | Return the incremented value of PLACE. | ||
| 15698 | |||
| 15699 | For more information about generalized variables, see Info node | ||
| 15700 | `(elisp) Generalized Variables'. | ||
| 15701 | |||
| 15702 | See also `decf'. | ||
| 15703 | |||
| 15704 | (fn PLACE &optional DELTA)" nil t) | ||
| 15705 | (autoload 'decf "gv" "\ | ||
| 15706 | Decrement generalized variable PLACE by DELTA (default to 1). | ||
| 15707 | |||
| 15708 | The DELTA is first subtracted from PLACE, and then stored in PLACE. | ||
| 15709 | Return the decremented value of PLACE. | ||
| 15710 | |||
| 15711 | For more information about generalized variables, see Info node | ||
| 15712 | `(elisp) Generalized Variables'. | ||
| 15713 | |||
| 15714 | See also `incf'. | ||
| 15715 | |||
| 15716 | (fn PLACE &optional DELTA)" nil t) | ||
| 15627 | (def-edebug-elem-spec 'gv-place '(form)) | 15717 | (def-edebug-elem-spec 'gv-place '(form)) |
| 15628 | (autoload 'gv-ref "gv" "\ | 15718 | (autoload 'gv-ref "gv" "\ |
| 15629 | Return a reference to PLACE. | 15719 | Return a reference to PLACE. |
| @@ -15683,42 +15773,6 @@ Like `hanoi-unix', but with a 64-bit clock." t) | |||
| 15683 | (register-definition-prefixes "hanoi" '("hanoi-")) | 15773 | (register-definition-prefixes "hanoi" '("hanoi-")) |
| 15684 | 15774 | ||
| 15685 | 15775 | ||
| 15686 | ;;; Generated autoloads from mail/hashcash.el | ||
| 15687 | |||
| 15688 | (autoload 'hashcash-insert-payment "hashcash" "\ | ||
| 15689 | Insert X-Payment and X-Hashcash headers with a payment for ARG. | ||
| 15690 | |||
| 15691 | (fn ARG)" t) | ||
| 15692 | (autoload 'hashcash-insert-payment-async "hashcash" "\ | ||
| 15693 | Insert X-Payment and X-Hashcash headers with a payment for ARG | ||
| 15694 | Only start calculation. Results are inserted when ready. | ||
| 15695 | |||
| 15696 | (fn ARG)" t) | ||
| 15697 | (autoload 'hashcash-verify-payment "hashcash" "\ | ||
| 15698 | Verify a hashcash payment. | ||
| 15699 | |||
| 15700 | (fn TOKEN &optional RESOURCE AMOUNT)") | ||
| 15701 | (autoload 'mail-add-payment "hashcash" "\ | ||
| 15702 | Add X-Payment: and X-Hashcash: headers with a hashcash payment | ||
| 15703 | for each recipient address. Prefix arg sets default payment temporarily. | ||
| 15704 | Set ASYNC to t to start asynchronous calculation. (See | ||
| 15705 | `mail-add-payment-async'). | ||
| 15706 | |||
| 15707 | (fn &optional ARG ASYNC)" t) | ||
| 15708 | (autoload 'mail-add-payment-async "hashcash" "\ | ||
| 15709 | Add X-Payment: and X-Hashcash: headers with a hashcash payment | ||
| 15710 | for each recipient address. Prefix arg sets default payment temporarily. | ||
| 15711 | Calculation is asynchronous. | ||
| 15712 | |||
| 15713 | (fn &optional ARG)" t) | ||
| 15714 | (autoload 'mail-check-payment "hashcash" "\ | ||
| 15715 | Look for a valid X-Payment: or X-Hashcash: header. | ||
| 15716 | Prefix arg sets default accept amount temporarily. | ||
| 15717 | |||
| 15718 | (fn &optional ARG)" t) | ||
| 15719 | (register-definition-prefixes "hashcash" '("hashcash-")) | ||
| 15720 | |||
| 15721 | |||
| 15722 | ;;; Generated autoloads from progmodes/heex-ts-mode.el | 15776 | ;;; Generated autoloads from progmodes/heex-ts-mode.el |
| 15723 | 15777 | ||
| 15724 | (autoload 'heex-ts-mode "heex-ts-mode" "\ | 15778 | (autoload 'heex-ts-mode "heex-ts-mode" "\ |
| @@ -15797,7 +15851,12 @@ list of properties through Custom will set the timer, thus | |||
| 15797 | enabling buffer local values. It sets the actual value to nil. | 15851 | enabling buffer local values. It sets the actual value to nil. |
| 15798 | Thus, Custom distinguishes between a nil value and other values | 15852 | Thus, Custom distinguishes between a nil value and other values |
| 15799 | that disable the feature, which Custom identifies with `never'. | 15853 | that disable the feature, which Custom identifies with `never'. |
| 15800 | The default is `never'.") | 15854 | The default is `never'. |
| 15855 | |||
| 15856 | Eldoc uses the echo area to display documentation. As such it | ||
| 15857 | conflicts with `help-at-pt-display-when-idle' due to the use of | ||
| 15858 | the echo area. If you use Eldoc, consider setting | ||
| 15859 | `eldoc-help-at-pt' instead.") | ||
| 15801 | (custom-autoload 'help-at-pt-display-when-idle "help-at-pt" nil) | 15860 | (custom-autoload 'help-at-pt-display-when-idle "help-at-pt" nil) |
| 15802 | (autoload 'scan-buf-move-to-region "help-at-pt" "\ | 15861 | (autoload 'scan-buf-move-to-region "help-at-pt" "\ |
| 15803 | Go to the start of the next region with non-nil PROP property. | 15862 | Go to the start of the next region with non-nil PROP property. |
| @@ -16499,7 +16558,7 @@ disabled. | |||
| 16499 | 16558 | ||
| 16500 | ;;; Generated autoloads from progmodes/hideshow.el | 16559 | ;;; Generated autoloads from progmodes/hideshow.el |
| 16501 | 16560 | ||
| 16502 | (defvar hs-special-modes-alist '((c-mode "{" "}" "/[*/]" nil nil) (c-ts-mode "{" "}" "/[*/]" nil nil) (c++-mode "{" "}" "/[*/]" nil nil) (c++-ts-mode "{" "}" "/[*/]" nil nil) (bibtex-mode ("@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil nil) (java-ts-mode "{" "}" "/[*/]" nil nil) (js-mode "{" "}" "/[*/]" nil) (js-ts-mode "{" "}" "/[*/]" nil) (lua-ts-mode "{\\|\\[\\[" "}\\|\\]\\]" "--" nil) (mhtml-mode "{\\|<[^/>]*?" "}\\|</[^/>]*[^/]>" "<!--" mhtml-forward nil)) "\ | 16561 | (defvar hs-special-modes-alist '((c-mode "{" "}" "/[*/]" nil nil) (c-ts-mode "{" "}" "/[*/]" nil nil) (c++-mode "{" "}" "/[*/]" nil nil) (c++-ts-mode "{" "}" "/[*/]" nil nil) (bibtex-mode ("@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil nil) (java-ts-mode "{" "}" "/[*/]" nil nil) (js-mode "{" "}" "/[*/]" nil) (js-ts-mode "{" "}" "/[*/]" nil) (mhtml-mode "{\\|<[^/>]*?" "}\\|</[^/>]*[^/]>" "<!--" mhtml-forward nil)) "\ |
| 16503 | Alist for initializing the hideshow variables for different modes. | 16562 | Alist for initializing the hideshow variables for different modes. |
| 16504 | Each element has the form | 16563 | Each element has the form |
| 16505 | (MODE START END COMMENT-START FORWARD-SEXP-FUNC ADJUST-BEG-FUNC | 16564 | (MODE START END COMMENT-START FORWARD-SEXP-FUNC ADJUST-BEG-FUNC |
| @@ -17034,9 +17093,13 @@ prompted before performing this operation. | |||
| 17034 | OPSTRING is a string which will be displayed to the user after the | 17093 | OPSTRING is a string which will be displayed to the user after the |
| 17035 | operation is complete, in the form: | 17094 | operation is complete, in the form: |
| 17036 | \"Operation complete; OPSTRING x buffers\" | 17095 | \"Operation complete; OPSTRING x buffers\" |
| 17096 | OPSTRING may also be a function that returns prompt text. | ||
| 17037 | ACTIVE-OPSTRING is a string which will be displayed to the user in a | 17097 | ACTIVE-OPSTRING is a string which will be displayed to the user in a |
| 17038 | confirmation message, in the form: | 17098 | confirmation message, in the form: |
| 17039 | \"Really ACTIVE-OPSTRING x buffers?\" | 17099 | \"Really ACTIVE-OPSTRING x buffers?\" |
| 17100 | ACTIVE-OPSTRING may also be a function that returns prompt text, or | ||
| 17101 | if DOCUMENTATION is not provided, ACTIVE-OPSTRING should return | ||
| 17102 | documentation text. | ||
| 17040 | BEFORE is a form to evaluate before start the operation. | 17103 | BEFORE is a form to evaluate before start the operation. |
| 17041 | AFTER is a form to evaluate once the operation is complete. | 17104 | AFTER is a form to evaluate once the operation is complete. |
| 17042 | COMPLEX means this function is special; if COMPLEX is nil BODY | 17105 | COMPLEX means this function is special; if COMPLEX is nil BODY |
| @@ -19190,6 +19253,7 @@ Optional argument KATAKANA-ONLY non-nil means to convert only KATAKANA char. | |||
| 19190 | (autoload 'read-hiragana-string "japan-util" "\ | 19253 | (autoload 'read-hiragana-string "japan-util" "\ |
| 19191 | Read a Hiragana string from the minibuffer, prompting with string PROMPT. | 19254 | Read a Hiragana string from the minibuffer, prompting with string PROMPT. |
| 19192 | If non-nil, second arg INITIAL-INPUT is a string to insert before reading. | 19255 | If non-nil, second arg INITIAL-INPUT is a string to insert before reading. |
| 19256 | Return the string read from the minibuffer. | ||
| 19193 | 19257 | ||
| 19194 | (fn PROMPT &optional INITIAL-INPUT)") | 19258 | (fn PROMPT &optional INITIAL-INPUT)") |
| 19195 | (register-definition-prefixes "japan-util" '("japanese-")) | 19259 | (register-definition-prefixes "japan-util" '("japanese-")) |
| @@ -19306,11 +19370,6 @@ Major mode for editing JSON, powered by tree-sitter. | |||
| 19306 | (register-definition-prefixes "jsonrpc" '("jsonrpc-")) | 19370 | (register-definition-prefixes "jsonrpc" '("jsonrpc-")) |
| 19307 | 19371 | ||
| 19308 | 19372 | ||
| 19309 | ;;; Generated autoloads from kermit.el | ||
| 19310 | |||
| 19311 | (register-definition-prefixes "kermit" '("kermit-")) | ||
| 19312 | |||
| 19313 | |||
| 19314 | ;;; Generated autoloads from emulation/keypad.el | 19373 | ;;; Generated autoloads from emulation/keypad.el |
| 19315 | 19374 | ||
| 19316 | (defvar keypad-setup nil "\ | 19375 | (defvar keypad-setup nil "\ |
| @@ -20221,6 +20280,12 @@ a value which excludes your own email address. | |||
| 20221 | Matching addresses are excluded from the Cc field in replies, and | 20280 | Matching addresses are excluded from the Cc field in replies, and |
| 20222 | also the To field, unless this would leave an empty To field.") | 20281 | also the To field, unless this would leave an empty To field.") |
| 20223 | (custom-autoload 'mail-dont-reply-to-names "mail-utils" t) | 20282 | (custom-autoload 'mail-dont-reply-to-names "mail-utils" t) |
| 20283 | (defvar mail-re-regexps '("RE" "RÉ\\.?" "FWD?" "رد" "回复" "回覆" "SV" "Antw\\.?" "VS" "REF" "AW" "ΑΠ" "ΣΧΕΤ" "השב" "Vá" "R" "RIF" "BLS" "RES" "Odp" "YNT" "ATB") "\ | ||
| 20284 | List of localized \"Re\" abbreviations in various languages. | ||
| 20285 | Each component can be a regular expression or a simple string. Matching | ||
| 20286 | is done case-insensitively. Used to initialize the legacy | ||
| 20287 | `rmail-re-abbrevs' and `message-subject-re-regexp' user options.") | ||
| 20288 | (custom-autoload 'mail-re-regexps "mail-utils" nil) | ||
| 20224 | (autoload 'mail-file-babyl-p "mail-utils" "\ | 20289 | (autoload 'mail-file-babyl-p "mail-utils" "\ |
| 20225 | Return non-nil if FILE is a Babyl file. | 20290 | Return non-nil if FILE is a Babyl file. |
| 20226 | 20291 | ||
| @@ -20604,6 +20669,15 @@ Populate MENU with commands that open a man page at point. | |||
| 20604 | (register-definition-prefixes "srecode/map" '("srecode-")) | 20669 | (register-definition-prefixes "srecode/map" '("srecode-")) |
| 20605 | 20670 | ||
| 20606 | 20671 | ||
| 20672 | ;;; Generated autoloads from textmodes/markdown-ts-mode.el | ||
| 20673 | |||
| 20674 | (autoload 'markdown-ts-mode "markdown-ts-mode" "\ | ||
| 20675 | Major mode for editing Markdown using tree-sitter grammar. | ||
| 20676 | |||
| 20677 | (fn)" t) | ||
| 20678 | (register-definition-prefixes "markdown-ts-mode" '("markdown-ts-")) | ||
| 20679 | |||
| 20680 | |||
| 20607 | ;;; Generated autoloads from master.el | 20681 | ;;; Generated autoloads from master.el |
| 20608 | 20682 | ||
| 20609 | (autoload 'master-mode "master" "\ | 20683 | (autoload 'master-mode "master" "\ |
| @@ -21099,6 +21173,16 @@ the rules from `css-mode'. | |||
| 21099 | (register-definition-prefixes "mhtml-mode" '("mhtml-")) | 21173 | (register-definition-prefixes "mhtml-mode" '("mhtml-")) |
| 21100 | 21174 | ||
| 21101 | 21175 | ||
| 21176 | ;;; Generated autoloads from textmodes/mhtml-ts-mode.el | ||
| 21177 | |||
| 21178 | (autoload 'mhtml-ts-mode "mhtml-ts-mode" "\ | ||
| 21179 | Major mode for editing HTML with embedded JavaScript and CSS. | ||
| 21180 | Powered by tree-sitter. | ||
| 21181 | |||
| 21182 | (fn)" t) | ||
| 21183 | (register-definition-prefixes "mhtml-ts-mode" '("mhtml-ts-mode-")) | ||
| 21184 | |||
| 21185 | |||
| 21102 | ;;; Generated autoloads from midnight.el | 21186 | ;;; Generated autoloads from midnight.el |
| 21103 | 21187 | ||
| 21104 | (defvar midnight-mode nil "\ | 21188 | (defvar midnight-mode nil "\ |
| @@ -21640,7 +21724,7 @@ about which direction is natural. Perhaps it has to do with which | |||
| 21640 | hemisphere you're in.) | 21724 | hemisphere you're in.) |
| 21641 | 21725 | ||
| 21642 | To test this function, evaluate: | 21726 | To test this function, evaluate: |
| 21643 | (global-set-key [down-mouse-2] \\='mouse-drag-throw) | 21727 | (keymap-global-set \"<down-mouse-2>\" \\='mouse-drag-throw) |
| 21644 | 21728 | ||
| 21645 | (fn START-EVENT)" t) | 21729 | (fn START-EVENT)" t) |
| 21646 | (autoload 'mouse-drag-drag "mouse-drag" "\ | 21730 | (autoload 'mouse-drag-drag "mouse-drag" "\ |
| @@ -21657,7 +21741,7 @@ Drag scrolling is identical to the \"hand\" option in MacPaint, or the | |||
| 21657 | middle button in Tk text widgets. | 21741 | middle button in Tk text widgets. |
| 21658 | 21742 | ||
| 21659 | To test this function, evaluate: | 21743 | To test this function, evaluate: |
| 21660 | (global-set-key [down-mouse-2] \\='mouse-drag-drag) | 21744 | (keymap-global-set \"<down-mouse-2>\" \\='mouse-drag-drag) |
| 21661 | 21745 | ||
| 21662 | (fn START-EVENT)" t) | 21746 | (fn START-EVENT)" t) |
| 21663 | (register-definition-prefixes "mouse-drag" '("mouse-")) | 21747 | (register-definition-prefixes "mouse-drag" '("mouse-")) |
| @@ -21744,6 +21828,7 @@ but still shows the full information. | |||
| 21744 | (autoload 'read-charset "mule-diag" "\ | 21828 | (autoload 'read-charset "mule-diag" "\ |
| 21745 | Read a character set from the minibuffer, prompting with string PROMPT. | 21829 | Read a character set from the minibuffer, prompting with string PROMPT. |
| 21746 | It must be an Emacs character set listed in the variable `charset-list'. | 21830 | It must be an Emacs character set listed in the variable `charset-list'. |
| 21831 | Return the charset as a symbol. | ||
| 21747 | 21832 | ||
| 21748 | Optional arguments are DEFAULT-VALUE and INITIAL-INPUT. | 21833 | Optional arguments are DEFAULT-VALUE and INITIAL-INPUT. |
| 21749 | DEFAULT-VALUE, if non-nil, is the default value. | 21834 | DEFAULT-VALUE, if non-nil, is the default value. |
| @@ -23465,7 +23550,7 @@ When called with a `C-0' (zero) prefix, insert a template at point. | |||
| 23465 | When called with a `C-1' (one) prefix, force prompting for a date when | 23550 | When called with a `C-1' (one) prefix, force prompting for a date when |
| 23466 | a datetree entry is made. | 23551 | a datetree entry is made. |
| 23467 | 23552 | ||
| 23468 | ELisp programs can set KEYS to a string associated with a template | 23553 | Elisp programs can set KEYS to a string associated with a template |
| 23469 | in `org-capture-templates'. In this case, interactive selection | 23554 | in `org-capture-templates'. In this case, interactive selection |
| 23470 | will be bypassed. | 23555 | will be bypassed. |
| 23471 | 23556 | ||
| @@ -24032,7 +24117,8 @@ For each archive configured in the variable `package-archives', | |||
| 24032 | inform Emacs about the latest versions of all packages it offers, | 24117 | inform Emacs about the latest versions of all packages it offers, |
| 24033 | and make them available for download. | 24118 | and make them available for download. |
| 24034 | Optional argument ASYNC specifies whether to perform the | 24119 | Optional argument ASYNC specifies whether to perform the |
| 24035 | downloads in the background. | 24120 | downloads in the background. This is always the case when the command |
| 24121 | is invoked interactively. | ||
| 24036 | 24122 | ||
| 24037 | (fn &optional ASYNC)" t) | 24123 | (fn &optional ASYNC)" t) |
| 24038 | (autoload 'package-installed-p "package" "\ | 24124 | (autoload 'package-installed-p "package" "\ |
| @@ -24045,8 +24131,9 @@ If PACKAGE is a `package-desc' object, MIN-VERSION is ignored. | |||
| 24045 | (fn PACKAGE &optional MIN-VERSION)") | 24131 | (fn PACKAGE &optional MIN-VERSION)") |
| 24046 | (autoload 'package-install "package" "\ | 24132 | (autoload 'package-install "package" "\ |
| 24047 | Install the package PKG. | 24133 | Install the package PKG. |
| 24048 | PKG can be a `package-desc' or a symbol naming one of the | 24134 | |
| 24049 | available packages in an archive in `package-archives'. | 24135 | PKG can be a `package-desc', or a symbol naming one of the available |
| 24136 | packages in an archive in `package-archives'. | ||
| 24050 | 24137 | ||
| 24051 | Mark the installed package as selected by adding it to | 24138 | Mark the installed package as selected by adding it to |
| 24052 | `package-selected-packages'. | 24139 | `package-selected-packages'. |
| @@ -24066,6 +24153,8 @@ had been enabled. | |||
| 24066 | (autoload 'package-upgrade "package" "\ | 24153 | (autoload 'package-upgrade "package" "\ |
| 24067 | Upgrade package NAME if a newer version exists. | 24154 | Upgrade package NAME if a newer version exists. |
| 24068 | 24155 | ||
| 24156 | NAME should be a symbol. | ||
| 24157 | |||
| 24069 | (fn NAME)" t) | 24158 | (fn NAME)" t) |
| 24070 | (autoload 'package-upgrade-all "package" "\ | 24159 | (autoload 'package-upgrade-all "package" "\ |
| 24071 | Refresh package list and upgrade all packages. | 24160 | Refresh package list and upgrade all packages. |
| @@ -24270,25 +24359,6 @@ See also `vc-prepare-patch'. | |||
| 24270 | (register-definition-prefixes "package-vc" '("package-vc-")) | 24359 | (register-definition-prefixes "package-vc" '("package-vc-")) |
| 24271 | 24360 | ||
| 24272 | 24361 | ||
| 24273 | ;;; Generated autoloads from emacs-lisp/package-x.el | ||
| 24274 | |||
| 24275 | (autoload 'package-upload-file "package-x" "\ | ||
| 24276 | Upload the Emacs Lisp package FILE to the package archive. | ||
| 24277 | Interactively, prompt for FILE. The package is considered a | ||
| 24278 | single-file package if FILE ends in \".el\", and a multi-file | ||
| 24279 | package if FILE ends in \".tar\". | ||
| 24280 | Automatically extract package attributes and update the archive's | ||
| 24281 | contents list with this information. | ||
| 24282 | If `package-archive-upload-base' does not specify a valid upload | ||
| 24283 | destination, prompt for one. If the directory does not exist, it | ||
| 24284 | is created. The directory need not have any initial contents | ||
| 24285 | (i.e., you can use this command to populate an initially empty | ||
| 24286 | archive). | ||
| 24287 | |||
| 24288 | (fn FILE)" t) | ||
| 24289 | (register-definition-prefixes "package-x" '("package-")) | ||
| 24290 | |||
| 24291 | |||
| 24292 | ;;; Generated autoloads from textmodes/page-ext.el | 24362 | ;;; Generated autoloads from textmodes/page-ext.el |
| 24293 | 24363 | ||
| 24294 | (register-definition-prefixes "page-ext" '("pages-")) | 24364 | (register-definition-prefixes "page-ext" '("pages-")) |
| @@ -25929,7 +25999,7 @@ of the project instance object. | |||
| 25929 | (put 'project-vc-include-untracked 'safe-local-variable #'booleanp) | 25999 | (put 'project-vc-include-untracked 'safe-local-variable #'booleanp) |
| 25930 | (put 'project-vc-name 'safe-local-variable #'stringp) | 26000 | (put 'project-vc-name 'safe-local-variable #'stringp) |
| 25931 | (put 'project-vc-extra-root-markers 'safe-local-variable (lambda (val) (and (listp val) (not (memq nil (mapcar #'stringp val)))))) | 26001 | (put 'project-vc-extra-root-markers 'safe-local-variable (lambda (val) (and (listp val) (not (memq nil (mapcar #'stringp val)))))) |
| 25932 | (defvar project-prefix-map (let ((map (make-sparse-keymap))) (define-key map "!" 'project-shell-command) (define-key map "&" 'project-async-shell-command) (define-key map "f" 'project-find-file) (define-key map "F" 'project-or-external-find-file) (define-key map "b" 'project-switch-to-buffer) (define-key map "s" 'project-shell) (define-key map "d" 'project-find-dir) (define-key map "D" 'project-dired) (define-key map "v" 'project-vc-dir) (define-key map "c" 'project-compile) (define-key map "e" 'project-eshell) (define-key map "k" 'project-kill-buffers) (define-key map "p" 'project-switch-project) (define-key map "g" 'project-find-regexp) (define-key map "G" 'project-or-external-find-regexp) (define-key map "r" 'project-query-replace-regexp) (define-key map "x" 'project-execute-extended-command) (define-key map "o" 'project-any-command) (define-key map "\2" 'project-list-buffers) map) "\ | 26002 | (defvar project-prefix-map (let ((map (make-sparse-keymap))) (define-key map "!" 'project-shell-command) (define-key map "&" 'project-async-shell-command) (define-key map "f" 'project-find-file) (define-key map "F" 'project-or-external-find-file) (define-key map "b" 'project-switch-to-buffer) (define-key map "s" 'project-shell) (define-key map "d" 'project-find-dir) (define-key map "D" 'project-dired) (define-key map "v" 'project-vc-dir) (define-key map "c" 'project-compile) (define-key map "e" 'project-eshell) (define-key map "k" 'project-kill-buffers) (define-key map "p" 'project-switch-project) (define-key map "g" 'project-find-regexp) (define-key map "G" 'project-or-external-find-regexp) (define-key map "r" 'project-query-replace-regexp) (define-key map "x" 'project-execute-extended-command) (define-key map "o" 'project-any-command) (define-key map "\2" 'project-list-buffers) (define-key map "\30s" 'project-save-some-buffers) map) "\ |
| 25933 | Keymap for project commands.") | 26003 | Keymap for project commands.") |
| 25934 | (define-key ctl-x-map "p" project-prefix-map) | 26004 | (define-key ctl-x-map "p" project-prefix-map) |
| 25935 | (autoload 'project-other-window-command "project" "\ | 26005 | (autoload 'project-other-window-command "project" "\ |
| @@ -26001,6 +26071,13 @@ interactively, include all files under the project root, except | |||
| 26001 | for VCS directories listed in `vc-directory-exclusion-list'. | 26071 | for VCS directories listed in `vc-directory-exclusion-list'. |
| 26002 | 26072 | ||
| 26003 | (fn &optional INCLUDE-ALL)" t) | 26073 | (fn &optional INCLUDE-ALL)" t) |
| 26074 | (autoload 'project-find-matching-file "project" "\ | ||
| 26075 | Visit the file that matches the current one, in another project. | ||
| 26076 | It will skip to the same line number as well. | ||
| 26077 | A matching file has the same file name relative to the project root. | ||
| 26078 | When called during switching to another project, this command will | ||
| 26079 | detect it and use the override. Otherwise, it prompts for the project | ||
| 26080 | to use from the known list." t) | ||
| 26004 | (autoload 'project-find-dir "project" "\ | 26081 | (autoload 'project-find-dir "project" "\ |
| 26005 | Start Dired in a directory inside the current project. | 26082 | Start Dired in a directory inside the current project. |
| 26006 | 26083 | ||
| @@ -26010,6 +26087,8 @@ The current buffer's `default-directory' is available as part of | |||
| 26010 | Start Dired in the current project's root." t) | 26087 | Start Dired in the current project's root." t) |
| 26011 | (autoload 'project-vc-dir "project" "\ | 26088 | (autoload 'project-vc-dir "project" "\ |
| 26012 | Run VC-Dir in the current project's root." t) | 26089 | Run VC-Dir in the current project's root." t) |
| 26090 | (autoload 'project-customize-dirlocals "project" "\ | ||
| 26091 | Run `customize-dirlocals' in current project's root." t) | ||
| 26013 | (autoload 'project-shell "project" "\ | 26092 | (autoload 'project-shell "project" "\ |
| 26014 | Start an inferior shell in the current project's root directory. | 26093 | Start an inferior shell in the current project's root directory. |
| 26015 | If a buffer already exists for running a shell in the project's root, | 26094 | If a buffer already exists for running a shell in the project's root, |
| @@ -26110,8 +26189,13 @@ If PROJECT is non-nil, kill buffers for that project instead. | |||
| 26110 | Also see the `project-kill-buffers-display-buffer-list' variable. | 26189 | Also see the `project-kill-buffers-display-buffer-list' variable. |
| 26111 | 26190 | ||
| 26112 | (fn &optional NO-CONFIRM PROJECT)" t) | 26191 | (fn &optional NO-CONFIRM PROJECT)" t) |
| 26192 | (autoload 'project-save-some-buffers "project" "\ | ||
| 26193 | Like `save-some-buffers', but only for this project's buffers. | ||
| 26194 | |||
| 26195 | (fn ARG)" t) | ||
| 26113 | (autoload 'project-remember-project "project" "\ | 26196 | (autoload 'project-remember-project "project" "\ |
| 26114 | Add project PR to the front of the project list. | 26197 | Add project PR to the front of the project list. |
| 26198 | If project PR satisfies `project-list-exclude', then nothing is done. | ||
| 26115 | Save the result in `project-list-file' if the list of projects | 26199 | Save the result in `project-list-file' if the list of projects |
| 26116 | has changed, and NO-WRITE is nil. | 26200 | has changed, and NO-WRITE is nil. |
| 26117 | 26201 | ||
| @@ -26460,7 +26544,7 @@ Optional argument FACE specifies the face to do the highlighting. | |||
| 26460 | 26544 | ||
| 26461 | ;;; Generated autoloads from progmodes/python.el | 26545 | ;;; Generated autoloads from progmodes/python.el |
| 26462 | 26546 | ||
| 26463 | (push '(python 0 28) package--builtin-versions) | 26547 | (push '(python 0 30) package--builtin-versions) |
| 26464 | (defconst python--auto-mode-alist-regexp "\\(?:\\.\\(?:p\\(?:th\\|y[iw]?\\)\\)\\|/\\(?:SCons\\(?:\\(?:crip\\|truc\\)t\\)\\)\\)\\'") | 26548 | (defconst python--auto-mode-alist-regexp "\\(?:\\.\\(?:p\\(?:th\\|y[iw]?\\)\\)\\|/\\(?:SCons\\(?:\\(?:crip\\|truc\\)t\\)\\)\\)\\'") |
| 26465 | (add-to-list 'auto-mode-alist (cons python--auto-mode-alist-regexp 'python-mode)) | 26549 | (add-to-list 'auto-mode-alist (cons python--auto-mode-alist-regexp 'python-mode)) |
| 26466 | (add-to-list 'interpreter-mode-alist '("python[0-9.]*" . python-mode)) | 26550 | (add-to-list 'interpreter-mode-alist '("python[0-9.]*" . python-mode)) |
| @@ -26492,6 +26576,12 @@ argument, restrict the suggestions to imports defining the symbol | |||
| 26492 | at point. If there is only one such suggestion, act without | 26576 | at point. If there is only one such suggestion, act without |
| 26493 | asking. | 26577 | asking. |
| 26494 | 26578 | ||
| 26579 | If the buffer does not belong to a project, the import statement is | ||
| 26580 | searched under the buffer's default directory. For example, if the file | ||
| 26581 | is located directly under the home directory, all files under the home | ||
| 26582 | directory will be searched. Please note that this can take a long time | ||
| 26583 | and may appear to hang. | ||
| 26584 | |||
| 26495 | When calling from Lisp, use a non-nil NAME to restrict the | 26585 | When calling from Lisp, use a non-nil NAME to restrict the |
| 26496 | suggestions to imports defining NAME. | 26586 | suggestions to imports defining NAME. |
| 26497 | 26587 | ||
| @@ -26513,7 +26603,17 @@ asking. | |||
| 26513 | (autoload 'python-sort-imports "python" "\ | 26603 | (autoload 'python-sort-imports "python" "\ |
| 26514 | Sort Python imports in the current buffer." t) | 26604 | Sort Python imports in the current buffer." t) |
| 26515 | (autoload 'python-fix-imports "python" "\ | 26605 | (autoload 'python-fix-imports "python" "\ |
| 26516 | Add missing imports and remove unused ones from the current buffer." t) | 26606 | Add missing imports and remove unused ones from the current buffer. |
| 26607 | |||
| 26608 | If there are missing imports, ask for an import statement using all | ||
| 26609 | imports found in the current project as suggestions. If there is only | ||
| 26610 | one such suggestion, act without asking. | ||
| 26611 | |||
| 26612 | If the buffer does not belong to a project, the import statement is | ||
| 26613 | searched under the buffer's default directory. For example, if the file | ||
| 26614 | is located directly under the home directory, all files under the home | ||
| 26615 | directory will be searched. Please note that this can take a long time | ||
| 26616 | and may appear to hang." t) | ||
| 26517 | (autoload 'python-base-mode "python" "\ | 26617 | (autoload 'python-base-mode "python" "\ |
| 26518 | Generic major mode for editing Python files. | 26618 | Generic major mode for editing Python files. |
| 26519 | 26619 | ||
| @@ -29471,6 +29571,31 @@ Make the shell buffer the current buffer, and return it. | |||
| 29471 | (Type \\[describe-mode] in the shell buffer for a list of commands.) | 29571 | (Type \\[describe-mode] in the shell buffer for a list of commands.) |
| 29472 | 29572 | ||
| 29473 | (fn &optional BUFFER FILE-NAME)" t) | 29573 | (fn &optional BUFFER FILE-NAME)" t) |
| 29574 | (autoload 'shell-bookmark-jump "shell" "\ | ||
| 29575 | Default BOOKMARK handler for shell buffers. | ||
| 29576 | Create a shell buffer with its `default-directory', shell process, and | ||
| 29577 | buffer name from the bookmark. If there is an existing shell buffer of | ||
| 29578 | the same name, default `shell-mode' behavior is to reuse that buffer. | ||
| 29579 | |||
| 29580 | For a remote shell `default-directory' will be the remote file name. | ||
| 29581 | Remote shell buffers reuse existing connections that match the remote | ||
| 29582 | file name, or may prompt you to create a new connection. For ad-hoc | ||
| 29583 | multi-hop remote connections, see Info node `(tramp)Ad-hoc multi-hops'. | ||
| 29584 | |||
| 29585 | If called with a single \\[universal-argument] prefix, a new shell | ||
| 29586 | buffer will be created if there is an existing buffer with the same | ||
| 29587 | name. The new buffer name is made unique using `rename-uniquely', which | ||
| 29588 | see. | ||
| 29589 | |||
| 29590 | If called with a double \\[universal-argument] prefix, new remote | ||
| 29591 | connections are inhibited, though an existing connection will be reused. | ||
| 29592 | You can make a remote connection manually by reloading the buffer using | ||
| 29593 | \\[find-alternate-file] or create a new shell using \\[shell]. | ||
| 29594 | |||
| 29595 | If called with a triple \\[universal-argument] prefix, a new buffer will | ||
| 29596 | be created if necessary, and new remote connections are inhibited. | ||
| 29597 | |||
| 29598 | (fn BOOKMARK)") | ||
| 29474 | (register-definition-prefixes "shell" '("dirs" "explicit-" "shell-")) | 29599 | (register-definition-prefixes "shell" '("dirs" "explicit-" "shell-")) |
| 29475 | 29600 | ||
| 29476 | 29601 | ||
| @@ -29546,6 +29671,7 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'), | |||
| 29546 | `:eg-result-string' properties." (declare (indent defun)) (shortdoc--check group functions) `(progn (setq shortdoc--groups (delq (assq ',group shortdoc--groups) shortdoc--groups)) (push (cons ',group ',functions) shortdoc--groups))) | 29671 | `:eg-result-string' properties." (declare (indent defun)) (shortdoc--check group functions) `(progn (setq shortdoc--groups (delq (assq ',group shortdoc--groups) shortdoc--groups)) (push (cons ',group ',functions) shortdoc--groups))) |
| 29547 | (autoload 'shortdoc-display-group "shortdoc" "\ | 29672 | (autoload 'shortdoc-display-group "shortdoc" "\ |
| 29548 | Pop to a buffer with short documentation summary for functions in GROUP. | 29673 | Pop to a buffer with short documentation summary for functions in GROUP. |
| 29674 | Interactively, prompt for GROUP. | ||
| 29549 | If FUNCTION is non-nil, place point on the entry for FUNCTION (if any). | 29675 | If FUNCTION is non-nil, place point on the entry for FUNCTION (if any). |
| 29550 | If SAME-WINDOW, don't pop to a new window. | 29676 | If SAME-WINDOW, don't pop to a new window. |
| 29551 | 29677 | ||
| @@ -29577,19 +29703,26 @@ DOM should be a parse tree as generated by | |||
| 29577 | ;;; Generated autoloads from net/sieve.el | 29703 | ;;; Generated autoloads from net/sieve.el |
| 29578 | 29704 | ||
| 29579 | (autoload 'sieve-manage "sieve" "\ | 29705 | (autoload 'sieve-manage "sieve" "\ |
| 29706 | Open ManageSieve SERVER. | ||
| 29707 | Optional argument PORT, if non-nil, specifies which port use; | ||
| 29708 | otherwise it defaults to `sieve-manage-default-port'. | ||
| 29580 | 29709 | ||
| 29710 | When called interactively, prompt for SERVER and PORT. If PORT is not | ||
| 29711 | specified, fall back to `sieve-manage-default-port'. | ||
| 29581 | 29712 | ||
| 29582 | (fn SERVER &optional PORT)" t) | 29713 | (fn SERVER &optional PORT)" t) |
| 29583 | (autoload 'sieve-upload "sieve" "\ | 29714 | (autoload 'sieve-upload "sieve" "\ |
| 29584 | 29715 | Upload script NAME to currently opened server. | |
| 29716 | If NAME is nil, detect it from script buffer name. | ||
| 29717 | If no open sieve buffer exists, call `sieve-manage' first. | ||
| 29585 | 29718 | ||
| 29586 | (fn &optional NAME)" t) | 29719 | (fn &optional NAME)" t) |
| 29587 | (autoload 'sieve-upload-and-bury "sieve" "\ | 29720 | (autoload 'sieve-upload-and-bury "sieve" "\ |
| 29588 | 29721 | Upload script NAME and bury the current buffer. | |
| 29589 | 29722 | ||
| 29590 | (fn &optional NAME)" t) | 29723 | (fn &optional NAME)" t) |
| 29591 | (autoload 'sieve-upload-and-kill "sieve" "\ | 29724 | (autoload 'sieve-upload-and-kill "sieve" "\ |
| 29592 | 29725 | Upload script NAME and kill the current buffer. | |
| 29593 | 29726 | ||
| 29594 | (fn &optional NAME)" t) | 29727 | (fn &optional NAME)" t) |
| 29595 | (register-definition-prefixes "sieve" '("sieve-")) | 29728 | (register-definition-prefixes "sieve" '("sieve-")) |
| @@ -30383,10 +30516,28 @@ Spam reports will be queued with the method used when | |||
| 30383 | 30516 | ||
| 30384 | ;;; Generated autoloads from speedbar.el | 30517 | ;;; Generated autoloads from speedbar.el |
| 30385 | 30518 | ||
| 30386 | (defalias 'speedbar 'speedbar-frame-mode) | 30519 | (autoload 'speedbar "speedbar" "\ |
| 30520 | Open or close the `speedbar'. | ||
| 30521 | Positive ARG means turn on, negative turn off. | ||
| 30522 | A nil ARG means toggle. If `speedbar-prefer-window' is t, open the | ||
| 30523 | speedbar in a window instead of in a separate frame. | ||
| 30524 | |||
| 30525 | (fn &optional ARG)" t) | ||
| 30526 | (defalias 'speedbar-frame 'speedbar-frame-mode) | ||
| 30387 | (autoload 'speedbar-frame-mode "speedbar" "\ | 30527 | (autoload 'speedbar-frame-mode "speedbar" "\ |
| 30388 | Enable or disable speedbar. Positive ARG means turn on, negative turn off. | 30528 | Enable or disable speedbar. |
| 30389 | A nil ARG means toggle. Once the speedbar frame is activated, a buffer in | 30529 | Positive ARG means turn on, negative turn off. A nil ARG means toggle. |
| 30530 | Once the speedbar frame is activated, a buffer in `speedbar-mode' will | ||
| 30531 | be displayed. Currently, only one speedbar is supported at a time. | ||
| 30532 | `speedbar-before-popup-hook' is called before popping up the speedbar frame. | ||
| 30533 | `speedbar-before-delete-hook' is called before the frame is deleted. | ||
| 30534 | |||
| 30535 | (fn &optional ARG)" t) | ||
| 30536 | (defalias 'speedbar-window 'speedbar-window-mode) | ||
| 30537 | (autoload 'speedbar-window-mode "speedbar" "\ | ||
| 30538 | Enable or disable speedbar window mode. | ||
| 30539 | Positive ARG means turn on, negative turn off. | ||
| 30540 | A nil ARG means toggle. Once the speedbar window is activated, a buffer in | ||
| 30390 | `speedbar-mode' will be displayed. Currently, only one speedbar is | 30541 | `speedbar-mode' will be displayed. Currently, only one speedbar is |
| 30391 | supported at a time. | 30542 | supported at a time. |
| 30392 | `speedbar-before-popup-hook' is called before popping up the speedbar frame. | 30543 | `speedbar-before-popup-hook' is called before popping up the speedbar frame. |
| @@ -30955,6 +31106,9 @@ PROMPT will be inserted at the start of the buffer, but won't be | |||
| 30955 | included in the resulting string. If nil, no prompt will be | 31106 | included in the resulting string. If nil, no prompt will be |
| 30956 | inserted in the buffer. | 31107 | inserted in the buffer. |
| 30957 | 31108 | ||
| 31109 | When the user exits recursive edit, this function returns the | ||
| 31110 | edited STRING. | ||
| 31111 | |||
| 30958 | Also see `string-edit'. | 31112 | Also see `string-edit'. |
| 30959 | 31113 | ||
| 30960 | (fn PROMPT STRING)") | 31114 | (fn PROMPT STRING)") |
| @@ -31182,8 +31336,8 @@ buffer when possible, instead of creating a new one on each call. | |||
| 31182 | (function-put 'with-work-buffer 'lisp-indent-function 0) | 31336 | (function-put 'with-work-buffer 'lisp-indent-function 0) |
| 31183 | (autoload 'string-pixel-width "subr-x" "\ | 31337 | (autoload 'string-pixel-width "subr-x" "\ |
| 31184 | Return the width of STRING in pixels. | 31338 | Return the width of STRING in pixels. |
| 31185 | If BUFFER is non-nil, use the face remappings from that buffer when | 31339 | If BUFFER is non-nil, use the face remappings, alternative and default |
| 31186 | determining the width. | 31340 | properties from that buffer when determining the width. |
| 31187 | If you call this function to measure pixel width of a string | 31341 | If you call this function to measure pixel width of a string |
| 31188 | with embedded newlines, it returns the width of the widest | 31342 | with embedded newlines, it returns the width of the widest |
| 31189 | substring that does not include newlines. | 31343 | substring that does not include newlines. |
| @@ -31212,7 +31366,7 @@ this defaults to the current buffer. | |||
| 31212 | Query the user for a process and return the process object. | 31366 | Query the user for a process and return the process object. |
| 31213 | 31367 | ||
| 31214 | (fn PROMPT)") | 31368 | (fn PROMPT)") |
| 31215 | (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" "work-buffer-")) | 31369 | (register-definition-prefixes "subr-x" '("emacs-etc--hide-local-variables" "hash-table-" "internal--thread-argument" "string-remove-" "thread-" "with-buffer-unmodified-if-unchanged" "work-buffer-")) |
| 31216 | 31370 | ||
| 31217 | 31371 | ||
| 31218 | ;;; Generated autoloads from progmodes/subword.el | 31372 | ;;; Generated autoloads from progmodes/subword.el |
| @@ -33135,8 +33289,8 @@ Valid ZONE values are described in the documentation of `format-time-string'. | |||
| 33135 | (put 'time-stamp-pattern 'safe-local-variable 'stringp) | 33289 | (put 'time-stamp-pattern 'safe-local-variable 'stringp) |
| 33136 | (autoload 'time-stamp "time-stamp" "\ | 33290 | (autoload 'time-stamp "time-stamp" "\ |
| 33137 | Update any time stamp strings (timestamps) in the buffer. | 33291 | Update any time stamp strings (timestamps) in the buffer. |
| 33138 | Look for a time stamp template and update it with the current date, | 33292 | Look for a time stamp template and update it with the current |
| 33139 | time, and/or other info. | 33293 | date, time, author, and/or other info. |
| 33140 | 33294 | ||
| 33141 | The template, which you manually create on one of the first 8 lines | 33295 | The template, which you manually create on one of the first 8 lines |
| 33142 | of the file before running this function, by default can look like | 33296 | of the file before running this function, by default can look like |
| @@ -33469,11 +33623,6 @@ holds a keymap. | |||
| 33469 | (register-definition-prefixes "tool-bar" '("modifier-bar-" "secondary-tool-bar-map" "toggle-tool-bar-mode-from-frame" "tool-bar-")) | 33623 | (register-definition-prefixes "tool-bar" '("modifier-bar-" "secondary-tool-bar-map" "toggle-tool-bar-mode-from-frame" "tool-bar-")) |
| 33470 | 33624 | ||
| 33471 | 33625 | ||
| 33472 | ;;; Generated autoloads from tooltip.el | ||
| 33473 | |||
| 33474 | (register-definition-prefixes "tooltip" '("tooltip-")) | ||
| 33475 | |||
| 33476 | |||
| 33477 | ;;; Generated autoloads from touch-screen.el | 33626 | ;;; Generated autoloads from touch-screen.el |
| 33478 | 33627 | ||
| 33479 | (autoload 'touch-screen-hold "touch-screen" "\ | 33628 | (autoload 'touch-screen-hold "touch-screen" "\ |
| @@ -33632,15 +33781,16 @@ the output buffer or changing the window configuration. | |||
| 33632 | 33781 | ||
| 33633 | ;;; Generated autoloads from emacs-lisp/track-changes.el | 33782 | ;;; Generated autoloads from emacs-lisp/track-changes.el |
| 33634 | 33783 | ||
| 33635 | (push '(track-changes 1 2) package--builtin-versions) | 33784 | (push '(track-changes 1 4) package--builtin-versions) |
| 33636 | (register-definition-prefixes "track-changes" '("track-changes-" "with--track-changes")) | 33785 | (register-definition-prefixes "track-changes" '("track-changes-" "with--track-changes")) |
| 33637 | 33786 | ||
| 33638 | 33787 | ||
| 33639 | ;;; Generated autoloads from net/tramp.el | 33788 | ;;; Generated autoloads from net/tramp.el |
| 33640 | 33789 | ||
| 33790 | (push '(tramp 0) package--builtin-versions) | ||
| 33641 | (when (featurep 'tramp-compat) | 33791 | (when (featurep 'tramp-compat) |
| 33642 | (load "tramp-compat" 'noerror 'nomessage)) | 33792 | (load "tramp-compat" 'noerror 'nomessage)) |
| 33643 | (defvar tramp-mode t "\ | 33793 | (defvar tramp-mode (fboundp 'make-process) "\ |
| 33644 | Whether Tramp is enabled. | 33794 | Whether Tramp is enabled. |
| 33645 | If it is set to nil, all remote file names are used literally. Don't | 33795 | If it is set to nil, all remote file names are used literally. Don't |
| 33646 | set it manually, use `inhibit-remote-files' or `without-remote-files' | 33796 | set it manually, use `inhibit-remote-files' or `without-remote-files' |
| @@ -33725,7 +33875,24 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar | |||
| 33725 | 33875 | ||
| 33726 | ;;; Generated autoloads from net/tramp-cmds.el | 33876 | ;;; Generated autoloads from net/tramp-cmds.el |
| 33727 | 33877 | ||
| 33728 | (register-definition-prefixes "tramp-cmds" '("tramp-")) | 33878 | (autoload 'tramp-revert-buffer-with-sudo "tramp-cmds" "\ |
| 33879 | Visit the current file again with superuser, or root, permissions. | ||
| 33880 | |||
| 33881 | By default this is done using the \"sudo\" Tramp method. | ||
| 33882 | You can customize `tramp-file-name-with-method' to change this. | ||
| 33883 | |||
| 33884 | Interactively, with a prefix argument, prompt for a different method. | ||
| 33885 | |||
| 33886 | If the buffer visits a file, the file is replaced. | ||
| 33887 | If the buffer runs `dired', the buffer is reverted." t) | ||
| 33888 | (autoload 'tramp-dired-find-file-with-sudo "tramp-cmds" "\ | ||
| 33889 | Visit the file or directory named on this line as the superuser. | ||
| 33890 | |||
| 33891 | By default this is done using the \"sudo\" Tramp method. | ||
| 33892 | YOu can customize `tramp-file-name-with-method' to change this. | ||
| 33893 | |||
| 33894 | Interactively, with a prefix argument, prompt for a different method." t) | ||
| 33895 | (register-definition-prefixes "tramp-cmds" '("tramp-" "with-tramp-file-name-with-method")) | ||
| 33729 | 33896 | ||
| 33730 | 33897 | ||
| 33731 | ;;; Generated autoloads from net/tramp-compat.el | 33898 | ;;; Generated autoloads from net/tramp-compat.el |
| @@ -33806,7 +33973,7 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar | |||
| 33806 | 33973 | ||
| 33807 | ;;; Generated autoloads from transient.el | 33974 | ;;; Generated autoloads from transient.el |
| 33808 | 33975 | ||
| 33809 | (push '(transient 0 8 4) package--builtin-versions) | 33976 | (push '(transient 0 8 6) package--builtin-versions) |
| 33810 | (autoload 'transient-insert-suffix "transient" "\ | 33977 | (autoload 'transient-insert-suffix "transient" "\ |
| 33811 | Insert a SUFFIX into PREFIX before LOC. | 33978 | Insert a SUFFIX into PREFIX before LOC. |
| 33812 | PREFIX is a prefix command, a symbol. | 33979 | PREFIX is a prefix command, a symbol. |
| @@ -33816,7 +33983,9 @@ LOC is a command, a key vector, a key description (a string | |||
| 33816 | as returned by `key-description'), or a coordination list | 33983 | as returned by `key-description'), or a coordination list |
| 33817 | (whose last element may also be a command or key). | 33984 | (whose last element may also be a command or key). |
| 33818 | Remove a conflicting binding unless optional KEEP-OTHER is | 33985 | Remove a conflicting binding unless optional KEEP-OTHER is |
| 33819 | non-nil. | 33986 | non-nil. When the conflict appears to be a false-positive, |
| 33987 | non-nil KEEP-OTHER may be ignored, which can be prevented | ||
| 33988 | by using `always'. | ||
| 33820 | See info node `(transient)Modifying Existing Transients'. | 33989 | See info node `(transient)Modifying Existing Transients'. |
| 33821 | 33990 | ||
| 33822 | (fn PREFIX LOC SUFFIX &optional KEEP-OTHER)") | 33991 | (fn PREFIX LOC SUFFIX &optional KEEP-OTHER)") |
| @@ -33830,7 +33999,9 @@ LOC is a command, a key vector, a key description (a string | |||
| 33830 | as returned by `key-description'), or a coordination list | 33999 | as returned by `key-description'), or a coordination list |
| 33831 | (whose last element may also be a command or key). | 34000 | (whose last element may also be a command or key). |
| 33832 | Remove a conflicting binding unless optional KEEP-OTHER is | 34001 | Remove a conflicting binding unless optional KEEP-OTHER is |
| 33833 | non-nil. | 34002 | non-nil. When the conflict appears to be a false-positive, |
| 34003 | non-nil KEEP-OTHER may be ignored, which can be prevented | ||
| 34004 | by using `always'. | ||
| 33834 | See info node `(transient)Modifying Existing Transients'. | 34005 | See info node `(transient)Modifying Existing Transients'. |
| 33835 | 34006 | ||
| 33836 | (fn PREFIX LOC SUFFIX &optional KEEP-OTHER)") | 34007 | (fn PREFIX LOC SUFFIX &optional KEEP-OTHER)") |
| @@ -34950,11 +35121,11 @@ Usage: | |||
| 34950 | :magic-fallback Form to be added to `magic-fallback-mode-alist'. | 35121 | :magic-fallback Form to be added to `magic-fallback-mode-alist'. |
| 34951 | :interpreter Form to be added to `interpreter-mode-alist'. | 35122 | :interpreter Form to be added to `interpreter-mode-alist'. |
| 34952 | 35123 | ||
| 34953 | :commands Define autoloads for commands that will be defined by the | 35124 | :commands Define autoloads for commands defined by the package. |
| 34954 | package. This is useful if the package is being lazily | 35125 | This is useful if the package is being lazily loaded, |
| 34955 | loaded, and you wish to conditionally call functions in your | 35126 | and you wish to conditionally call functions in your |
| 34956 | `:init' block that are defined in the package. | 35127 | `:init' block that are defined in the package. |
| 34957 | :autoload Similar to :commands, but it for no-interactive one. | 35128 | :autoload Similar to `:commands', but used for non-interactive functions. |
| 34958 | :hook Specify hook(s) to attach this package to. | 35129 | :hook Specify hook(s) to attach this package to. |
| 34959 | 35130 | ||
| 34960 | :bind Bind keys, and define autoloads for the bound commands. | 35131 | :bind Bind keys, and define autoloads for the bound commands. |
| @@ -35217,6 +35388,8 @@ For modern merging-based version control systems: | |||
| 35217 | backend with which to register the fileset. | 35388 | backend with which to register the fileset. |
| 35218 | If every work file in the VC fileset is either added or modified, | 35389 | If every work file in the VC fileset is either added or modified, |
| 35219 | pop up a *vc-log* buffer to commit the fileset changes. | 35390 | pop up a *vc-log* buffer to commit the fileset changes. |
| 35391 | (If some are added or modified and some are unregistered, offer to | ||
| 35392 | register the unregistered ones, first.) | ||
| 35220 | For a centralized version control system, if any work file in | 35393 | For a centralized version control system, if any work file in |
| 35221 | the VC fileset is out of date, offer to update the fileset. | 35394 | the VC fileset is out of date, offer to update the fileset. |
| 35222 | 35395 | ||
| @@ -37052,6 +37225,8 @@ Non-nil means fill each warning text using this string as `fill-prefix'.") | |||
| 37052 | Format for displaying the warning type in the warning message. | 37225 | Format for displaying the warning type in the warning message. |
| 37053 | The result of formatting the type this way gets included in the | 37226 | The result of formatting the type this way gets included in the |
| 37054 | message under the control of the string in `warning-levels'.") | 37227 | message under the control of the string in `warning-levels'.") |
| 37228 | (defvar warning-inhibit-types nil "\ | ||
| 37229 | Like `warning-suppress-log-types', but intended for programs to let-bind.") | ||
| 37055 | (autoload 'display-warning "warnings" "\ | 37230 | (autoload 'display-warning "warnings" "\ |
| 37056 | Display a warning message, MESSAGE. | 37231 | Display a warning message, MESSAGE. |
| 37057 | TYPE is the warning type: either a custom group name (a symbol), | 37232 | TYPE is the warning type: either a custom group name (a symbol), |
| @@ -37798,6 +37973,23 @@ disabled. | |||
| 37798 | Return non-nil if WIDGET is a widget. | 37973 | Return non-nil if WIDGET is a widget. |
| 37799 | 37974 | ||
| 37800 | (fn WIDGET)") | 37975 | (fn WIDGET)") |
| 37976 | (autoload 'widget-put "wid-edit" "\ | ||
| 37977 | In WIDGET, set PROPERTY to VALUE. | ||
| 37978 | The value can later be retrieved with `widget-get'. | ||
| 37979 | |||
| 37980 | (fn WIDGET PROPERTY VALUE)") | ||
| 37981 | (autoload 'widget-get "wid-edit" "\ | ||
| 37982 | In WIDGET, get the value of PROPERTY. | ||
| 37983 | The value could either be specified when the widget was created, or | ||
| 37984 | later with `widget-put'. | ||
| 37985 | |||
| 37986 | (fn WIDGET PROPERTY)") | ||
| 37987 | (autoload 'widget-apply "wid-edit" "\ | ||
| 37988 | Apply the value of WIDGET's PROPERTY to the widget itself. | ||
| 37989 | Return the result of applying the value of PROPERTY to WIDGET. | ||
| 37990 | ARGS are passed as extra arguments to the function. | ||
| 37991 | |||
| 37992 | (fn WIDGET PROPERTY &rest ARGS)") | ||
| 37801 | (autoload 'widget-prompt-value "wid-edit" "\ | 37993 | (autoload 'widget-prompt-value "wid-edit" "\ |
| 37802 | Prompt for a value matching WIDGET, using PROMPT. | 37994 | Prompt for a value matching WIDGET, using PROMPT. |
| 37803 | The current value is assumed to be VALUE, unless UNBOUND is non-nil. | 37995 | The current value is assumed to be VALUE, unless UNBOUND is non-nil. |
| @@ -37841,7 +38033,11 @@ it is relative to the top edge (for positive ARG) or the bottom edge | |||
| 37841 | If no window is at the desired location, an error is signaled | 38033 | If no window is at the desired location, an error is signaled |
| 37842 | unless `windmove-create-window' is non-nil and a new window is created. | 38034 | unless `windmove-create-window' is non-nil and a new window is created. |
| 37843 | 38035 | ||
| 37844 | (fn &optional ARG)" t) | 38036 | If `windmove-allow-repeated-command-override' is true and this commnad |
| 38037 | stopped because it wouldn't move into a window marked with | ||
| 38038 | `no-other-window', repeating the command will move into that window. | ||
| 38039 | |||
| 38040 | (fn &optional ARG IS-INTERACTIVE)" t) | ||
| 37845 | (autoload 'windmove-up "windmove" "\ | 38041 | (autoload 'windmove-up "windmove" "\ |
| 37846 | Select the window above the current one. | 38042 | Select the window above the current one. |
| 37847 | With no prefix argument, or with prefix argument equal to zero, \"up\" | 38043 | With no prefix argument, or with prefix argument equal to zero, \"up\" |
| @@ -37851,7 +38047,11 @@ negative ARG) of the current window. | |||
| 37851 | If no window is at the desired location, an error is signaled | 38047 | If no window is at the desired location, an error is signaled |
| 37852 | unless `windmove-create-window' is non-nil and a new window is created. | 38048 | unless `windmove-create-window' is non-nil and a new window is created. |
| 37853 | 38049 | ||
| 37854 | (fn &optional ARG)" t) | 38050 | If `windmove-allow-repeated-command-override' is true and this commnad |
| 38051 | stopped because it wouldn't move into a window marked with | ||
| 38052 | `no-other-window', repeating the command will move into that window. | ||
| 38053 | |||
| 38054 | (fn &optional ARG IS-INTERACTIVE)" t) | ||
| 37855 | (autoload 'windmove-right "windmove" "\ | 38055 | (autoload 'windmove-right "windmove" "\ |
| 37856 | Select the window to the right of the current one. | 38056 | Select the window to the right of the current one. |
| 37857 | With no prefix argument, or with prefix argument equal to zero, | 38057 | With no prefix argument, or with prefix argument equal to zero, |
| @@ -37861,7 +38061,11 @@ bottom edge (for negative ARG) of the current window. | |||
| 37861 | If no window is at the desired location, an error is signaled | 38061 | If no window is at the desired location, an error is signaled |
| 37862 | unless `windmove-create-window' is non-nil and a new window is created. | 38062 | unless `windmove-create-window' is non-nil and a new window is created. |
| 37863 | 38063 | ||
| 37864 | (fn &optional ARG)" t) | 38064 | If `windmove-allow-repeated-command-override' is true and this commnad |
| 38065 | stopped because it wouldn't move into a window marked with | ||
| 38066 | `no-other-window', repeating the command will move into that window. | ||
| 38067 | |||
| 38068 | (fn &optional ARG IS-INTERACTIVE)" t) | ||
| 37865 | (autoload 'windmove-down "windmove" "\ | 38069 | (autoload 'windmove-down "windmove" "\ |
| 37866 | Select the window below the current one. | 38070 | Select the window below the current one. |
| 37867 | With no prefix argument, or with prefix argument equal to zero, | 38071 | With no prefix argument, or with prefix argument equal to zero, |
| @@ -37871,7 +38075,11 @@ it is relative to the left edge (for positive ARG) or the right edge | |||
| 37871 | If no window is at the desired location, an error is signaled | 38075 | If no window is at the desired location, an error is signaled |
| 37872 | unless `windmove-create-window' is non-nil and a new window is created. | 38076 | unless `windmove-create-window' is non-nil and a new window is created. |
| 37873 | 38077 | ||
| 37874 | (fn &optional ARG)" t) | 38078 | If `windmove-allow-repeated-command-override' is true and this commnad |
| 38079 | stopped because it wouldn't move into a window marked with | ||
| 38080 | `no-other-window', repeating the command will move into that window. | ||
| 38081 | |||
| 38082 | (fn &optional ARG IS-INTERACTIVE)" t) | ||
| 37875 | (defvar windmove-mode t "\ | 38083 | (defvar windmove-mode t "\ |
| 37876 | Non-nil if Windmove mode is enabled. | 38084 | Non-nil if Windmove mode is enabled. |
| 37877 | See the `windmove-mode' command | 38085 | See the `windmove-mode' command |
| @@ -38163,6 +38371,12 @@ command `winner-undo'. By default this one is bound to the key | |||
| 38163 | sequence \\`C-c <left>'. If you change your mind (while undoing), | 38371 | sequence \\`C-c <left>'. If you change your mind (while undoing), |
| 38164 | you can press \\`C-c <right>' (calling `winner-redo'). | 38372 | you can press \\`C-c <right>' (calling `winner-redo'). |
| 38165 | 38373 | ||
| 38374 | If you use `tab-bar-mode', consider using `tab-bar-history-mode', as | ||
| 38375 | `winner-mode' is unaware of tab switching, and might turn the window | ||
| 38376 | configuration of the current tab to another's (old) window | ||
| 38377 | configuration. `tab-bar-history-mode' provides tab-specific window | ||
| 38378 | configuration history avoiding this problem. | ||
| 38379 | |||
| 38166 | This is a global minor mode. If called interactively, toggle the | 38380 | This is a global minor mode. If called interactively, toggle the |
| 38167 | `Winner mode' mode. If the prefix argument is positive, enable the | 38381 | `Winner mode' mode. If the prefix argument is positive, enable the |
| 38168 | mode, and if it is zero or negative, disable the mode. | 38382 | mode, and if it is zero or negative, disable the mode. |
| @@ -38560,9 +38774,14 @@ Yank media (images, HTML and the like) from the clipboard. | |||
| 38560 | This command depends on the current major mode having support for | 38774 | This command depends on the current major mode having support for |
| 38561 | accepting the media type. The mode has to register itself using | 38775 | accepting the media type. The mode has to register itself using |
| 38562 | the `yank-media-handler' mechanism. | 38776 | the `yank-media-handler' mechanism. |
| 38777 | Optional argument NOSELECT non-nil (interactively, with a prefix | ||
| 38778 | argument) means to skip auto-selecting the best MIME type and ask for | ||
| 38779 | the MIME type to use. | ||
| 38563 | 38780 | ||
| 38564 | Also see `yank-media-types' for a command that lets you explore | 38781 | Also see `yank-media-types' for a command that lets you explore |
| 38565 | all the different selection types." t) | 38782 | all the different selection types. |
| 38783 | |||
| 38784 | (fn &optional NOSELECT)" t) | ||
| 38566 | (autoload 'yank-media-handler "yank-media" "\ | 38785 | (autoload 'yank-media-handler "yank-media" "\ |
| 38567 | Register HANDLER for dealing with `yank-media' actions for TYPES. | 38786 | Register HANDLER for dealing with `yank-media' actions for TYPES. |
| 38568 | TYPES should be a MIME media type symbol, a regexp, or a list | 38787 | TYPES should be a MIME media type symbol, a regexp, or a list |
| @@ -38603,6 +38822,75 @@ run a specific program. The program must be a member of | |||
| 38603 | 38822 | ||
| 38604 | (fn &optional PGM)" t) | 38823 | (fn &optional PGM)" t) |
| 38605 | (register-definition-prefixes "zone" '("zone-")) | 38824 | (register-definition-prefixes "zone" '("zone-")) |
| 38825 | |||
| 38826 | |||
| 38827 | ;;; Generated autoloads from pulse.el | ||
| 38828 | |||
| 38829 | (push '(pulse 1 0) package--builtin-versions) | ||
| 38830 | (autoload 'pulse-momentary-highlight-one-line "pulse" "\ | ||
| 38831 | Highlight the line around POINT, unhighlighting before next command. | ||
| 38832 | If POINT is nil or missing, the current point is used instead. | ||
| 38833 | |||
| 38834 | Optional argument FACE specifies the face to do the highlighting. | ||
| 38835 | |||
| 38836 | (fn &optional POINT FACE)") | ||
| 38837 | (autoload 'pulse-momentary-highlight-region "pulse" "\ | ||
| 38838 | Highlight between START and END, unhighlighting before next command. | ||
| 38839 | Optional argument FACE specifies the face to do the highlighting. | ||
| 38840 | |||
| 38841 | (fn START END &optional FACE)") | ||
| 38842 | (register-definition-prefixes "pulse" '("pulse-")) | ||
| 38843 | |||
| 38844 | |||
| 38845 | ;;; Generated autoloads from treesit-x.el | ||
| 38846 | |||
| 38847 | (autoload 'define-treesit-generic-mode "treesit-x" "\ | ||
| 38848 | Create a new treesit generic mode MODE. | ||
| 38849 | |||
| 38850 | A \"treesit\" mode is a simple major mode with basic support for | ||
| 38851 | Font Lock mode, but otherwise does not have any special keystrokes | ||
| 38852 | or functionality available. | ||
| 38853 | |||
| 38854 | MODE is the name of the command for the treesit generic mode; don't | ||
| 38855 | quote it. The optional DOCSTRING is the documentation for the mode | ||
| 38856 | command. If you do not supply it, `define-treesit-generic-mode' | ||
| 38857 | uses a default documentation string instead. | ||
| 38858 | |||
| 38859 | KEYWORD-ARGS are optional arguments in the form of pairs of keyword | ||
| 38860 | and value. The following keyword arguments are currently supported: | ||
| 38861 | |||
| 38862 | :lang is a language symbol of the corresponding tree-sitter grammar. | ||
| 38863 | |||
| 38864 | :source is either a string for the URL or a list in the same format | ||
| 38865 | as for elements in `treesit-language-source-alist', i.e. | ||
| 38866 | (URL REVISION SOURCE-DIR CC C++ COMMIT). | ||
| 38867 | |||
| 38868 | :auto-mode is a regular expression or a list of regular expressions | ||
| 38869 | to add to `auto-mode-alist'. These regular expressions are added | ||
| 38870 | when Emacs runs the macro expansion. | ||
| 38871 | |||
| 38872 | :parent is the name of the command for the parent mode. | ||
| 38873 | |||
| 38874 | :name is a string that will appear in the mode line. | ||
| 38875 | |||
| 38876 | BODY are forms to execute just before running the | ||
| 38877 | hooks for the new mode. Do not use `interactive' here. | ||
| 38878 | These forms do some additional setup. The mode command calls | ||
| 38879 | these functions just before it runs `treesit-major-mode-setup' | ||
| 38880 | and the mode hook `MODE-hook'. | ||
| 38881 | |||
| 38882 | See at the bottom of the file treesit-x.el for some examples | ||
| 38883 | of `define-treesit-generic-mode'. | ||
| 38884 | |||
| 38885 | (fn MODE [DOCSTRING] [KEYWORD-ARGS...] &rest BODY)" nil t) | ||
| 38886 | (function-put 'define-treesit-generic-mode 'doc-string-elt 2) | ||
| 38887 | (function-put 'define-treesit-generic-mode 'lisp-indent-function 'defun) | ||
| 38888 | (autoload 'treesit-generic-mode-setup "treesit-x" "\ | ||
| 38889 | Go into the treesit generic mode MODE. | ||
| 38890 | |||
| 38891 | (fn LANG SOURCE)") | ||
| 38892 | (register-definition-prefixes "treesit-x" '("alpinejs-generic-ts-" "gitattributes-generic-ts-mode" "liquid-generic-ts-mode" "treesit-generic-mode-font-lock-")) | ||
| 38893 | |||
| 38606 | 38894 | ||
| 38607 | ;;; End of scraped data | 38895 | ;;; End of scraped data |
| 38608 | 38896 | ||