aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ldefs-boot.el
diff options
context:
space:
mode:
authorEli Zaretskii2025-04-10 08:04:08 -0400
committerEli Zaretskii2025-04-10 08:04:08 -0400
commitaa8a5090ec102a7e39d1cc7661c6dffd27dbea67 (patch)
tree9bdf6ce1e76fa8b930a9fbd9ae9e227f42f23e54 /lisp/ldefs-boot.el
parentbb0f84bc0bf77892b05e3720ea623dcd3431325b (diff)
downloademacs-aa8a5090ec102a7e39d1cc7661c6dffd27dbea67.tar.gz
emacs-aa8a5090ec102a7e39d1cc7661c6dffd27dbea67.zip
; Update ldefs-boot.el
Diffstat (limited to 'lisp/ldefs-boot.el')
-rw-r--r--lisp/ldefs-boot.el624
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" "\
1455Read a password, prompting with PROMPT, and return it. 1455Read a password, prompting with PROMPT, and return password as a string.
1456If optional CONFIRM is non-nil, read the password twice to make sure. 1456If optional CONFIRM is non-nil, read the password twice to make sure.
1457Optional DEFAULT is a default password to use instead of empty input. 1457Optional 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
2296minibuffer history list `bookmark-history'. 2296minibuffer 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" "\
2301Change the name of OLD-NAME bookmark to NEW-NAME name. 2301Change the name of OLD-NAME bookmark to NEW-NAME name.
2302If called from keyboard, prompt for OLD-NAME and NEW-NAME. 2302If 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" "\
2315Insert the text of the file pointed to by bookmark BOOKMARK-NAME. 2315Insert the text of the file pointed to by bookmark BOOKMARK-NAME.
2316BOOKMARK-NAME is a bookmark name (a string), not a bookmark record. 2316BOOKMARK-NAME is a bookmark name (a string), not a bookmark record.
2317Refuse to insert bookmarks if its handler's property `bookmark-inhibit',
2318which is a list, contains `insert'.
2317 2319
2318You may have a problem using this function if the value of variable 2320You 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.
2383The list is displayed in a buffer named `*Bookmark List*'. 2385The list is displayed in a buffer named `*Bookmark List*'.
2384The leftmost column displays a D if the bookmark is flagged for 2386The leftmost column displays a D if the bookmark is flagged for
2385deletion, or > if it is flagged for displaying." t) 2387deletion, 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" "\
2389Incremental search of bookmarks, hiding the non-matches as we go." '(bookmark-bmenu-mode)) 2391Incremental 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
4579This variable is not used at present, but it is defined in hopes that 4578This variable is not used at present, but it is defined in hopes that
4580a future Emacs interpreter will be able to use it.") 4579a future Emacs interpreter will be able to use it.")
4581(autoload 'cl-incf "cl-lib" "\ 4580(defalias 'cl-incf #'incf "\
4582Increment PLACE by X (1 by default). 4581Increment PLACE by X (1 by default).
4583PLACE may be a symbol, or any generalized variable allowed by `setf'. 4582PLACE may be a symbol, or any generalized variable allowed by `setf'.
4584The return value is the incremented value of PLACE. 4583The return value is the incremented value of PLACE.
@@ -4586,7 +4585,8 @@ The return value is the incremented value of PLACE.
4586If X is specified, it should be an expression that should 4585If X is specified, it should be an expression that should
4587evaluate to a number. 4586evaluate to a number.
4588 4587
4589(fn PLACE &optional X)" nil t) 4588This 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 "\
4591Non-nil if Cl-Old-Struct-Compat mode is enabled. 4591Non-nil if Cl-Old-Struct-Compat mode is enabled.
4592See the `cl-old-struct-compat-mode' command 4592See 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" "\
5396Extended form of traditional Lisp `cond' construct. 5397Extended form of traditional Lisp `cond' construct.
5397A `cond*' construct is a series of clauses, and a clause 5398A `cond*' construct is a series of clauses, and a clause
5398normally has the form (CONDITION BODY...). 5399normally has the form (CONDITION BODY...).
5399 5400
5400CONDITION can be a Lisp expression, as in `cond'. 5401CONDITION can be a Lisp expression, as in `cond'.
5401Or it can be one of `(pcase* PATTERN DATUM)', 5402Or it can be one of`(bind* BINDINGS...)', `(match* PATTERN DATUM)',
5402`(bind* BINDINGS...)', or `(match* PATTERN DATUM)', 5403or `(pcase* PATTERN DATUM)',
5404
5405`(bind* BINDINGS...)' means to bind BINDINGS (as if they were in `let*')
5406for the body of the clause, and all subsequent clauses, since the `bind*'
5407clause is always a non-exit clause. As a condition, it counts as true
5408and 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
5411For its patterns, see `match*'.
5412The 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
5405pattern PATTERN, using the same pattern syntax as `pcase'. 5415pattern PATTERN, using the same pattern syntax as `pcase'.
5406The condition counts as true if PATTERN matches DATUM. 5416The condition counts as true if PATTERN matches DATUM.
5407 5417
5408`(bind* BINDINGS...)' means to bind BINDINGS (as if they were in `let*')
5409for the body of the clause. As a condition, it counts as true
5410if the first binding's value is non-nil. All the bindings are made
5411unconditionally for whatever scope they cover.
5412
5413`(match* PATTERN DATUM)' is an alternative to `pcase*' that uses another
5414syntax for its patterns, see `match*'.
5415
5416When a clause's condition is true, and it exits the `cond*' 5418When a clause's condition is true, and it exits the `cond*'
5417or is the last clause, the value of the last expression 5419or is the last clause, the value of the last expression
5418in its body becomes the return value of the `cond*' construct. 5420in 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.
5420Non-exit clause: 5422Non-exit clause:
5421 5423
5422If a clause has only one element, or if its first element is 5424If a clause has only one element, or if its first element is
5423a `bind*' clause, this clause never exits the `cond*' construct. 5425t or a `bind*' clause, this clause never exits the `cond*' construct.
5424Instead, control always falls through to the next clause (if any). 5426Instead, control always falls through to the next clause (if any).
5425All bindings made in CONDITION for the BODY of the non-exit clause 5427All bindings made in CONDITION for the BODY of the non-exit clause
5426are passed along to the rest of the clauses in this `cond*' construct. 5428are 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.
7716Local to each Dired buffer. May be a list, in which case the car is the 7722Local to each Dired buffer. May be a list, in which case the car is the
7717directory name and the cdr is the list of files to mention. 7723directory name and the cdr is the list of files to mention.
7718The directory name must be absolute, but need not be fully expanded.") 7724The 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.
7722Optional second argument SWITCHES specifies the options to be used 7728Optional second argument SWITCHES specifies the options to be used
@@ -7741,17 +7747,17 @@ Type \\[describe-mode] after entering Dired for more info.
7741If DIRNAME is already in a Dired buffer, that buffer is used without refresh. 7747If 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\"
8117and nil means \"don't use\". There's an implicit nil at the end of the 8123and nil means \"don't use\". There's an implicit nil at the end of the
8118list.") 8124list.")
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" "\
8514Make a global mode GLOBAL-MODE corresponding to buffer-local minor MODE. 8519Make a global mode GLOBAL-MODE corresponding to buffer-local minor MODE.
8515TURN-ON is a function that will be called with no args in every buffer 8520TURN-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" "\
8994Edit current history line in minibuffer and execute result.
8995With 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" "\
9118Start ediff between current buffer and its file on disk. 9114Start ediff between current buffer and its file on disk.
9119This command can be used instead of `revert-buffer'. If there is 9115This command can be used instead of `revert-buffer'. If there is
9120nothing to revert then this command fails." t) 9116nothing to revert then this command fails.
9117
9118Non-interactively, STARTUP-HOOKS is a list of functions that Emacs calls
9119without arguments after setting up the Ediff buffers.
9120
9121(fn &optional STARTUP-HOOKS)" t)
9121(autoload 'ediff-backup "ediff" "\ 9122(autoload 'ediff-backup "ediff" "\
9122Run Ediff on FILE and its backup file. 9123Run Ediff on FILE and its backup file.
9123Uses the latest backup, if there are several numerical backups. 9124Uses 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" "\
9692Define NAME as a new class derived from SUPERCLASS with SLOTS.
9693OPTIONS-AND-DOC is used as the class' options and base documentation.
9694SUPERCLASSES is a list of superclasses to inherit from, with SLOTS
9695being 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
9708The 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
9715A class can also have optional options. These options happen in place
9716of documentation (including a :documentation tag), in addition to
9717documentation, or not at all. Supported options are:
9718
9719 :documentation - The doc-string used for this class.
9720
9721Options 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
9735Options 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
9741Due to the way class options are set up, you can add any tags you wish,
9742and 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" "\
9692Make a new instance of CLASS based on INITARGS. 9748Make a new instance of CLASS based on INITARGS.
9693For example: 9749For 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
10134Message buffer where you can explain more about the patch. 10190Message 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
10664See the alternative entry-point command `erc' as well as Info 10720See the alternative entry-point command `erc' as well as Info
10665node `(erc) Connecting' for a fuller description of the various 10721node `(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" "\
10940Define test NAME (a symbol) using assertions from TEST-STR. 10996Define test NAME (a symbol) using assertions from TEST-STR.
10941 10997
10942Other than MAJOR-MODE and TEST-STR parameters, this macro accepts 10998The MAJOR-MODE symbol determines the syntax and font lock of TEST-STR.
10943the same parameters and keywords as `ert-deftest' and is intended
10944to be used through `ert'.
10945 10999
10946(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE TEST-STR)" nil t) 11000Except for the MAJOR-MODE and TEST-STR parameters, this macro accepts
10947(function-put 'ert-font-lock-deftest 'doc-string-elt 3) 11001the same arguments and keywords as `ert-deftest' and is intended to be
10948(function-put 'ert-font-lock-deftest 'lisp-indent-function 2) 11002used 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" "\
10950Define test NAME (a symbol) using assertions from FILE. 11008Define test NAME (a symbol) using assertions from FILE.
10951 11009
10952FILE - path to a file with assertions in ERT resource director as 11010FILE names a file with assertions in the ERT resource directory, as
10953return by `ert-resource-directory'. 11011returned by `ert-resource-directory'. The MAJOR-MODE symbol determines
11012the syntax and font lock of FILE's contents.
10954 11013
10955Other than MAJOR-MODE and FILE parameters, this macro accepts the 11014Except for the MAJOR-MODE and FILE parameters, this macro accepts the
10956same parameters and keywords as `ert-deftest' and is intended to 11015same arguments and keywords as `ert-deftest' and is intended to be used
10957be used through `ert'. 11016through `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" "\
10963Check font faces in TEST-STRING set by MODE. 11022Check 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" "\
10980Kill 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" "\
11896Display the bookmarks." t) 11953Display the eww bookmarks.
11954Optional argument BUILD-ONLY, when non-nil, means to build the buffer
11955without popping it.
11956
11957(fn &optional BUILD-ONLY)" t)
11897(autoload 'eww-bookmark-jump "eww" "\ 11958(autoload 'eww-bookmark-jump "eww" "\
11898Default bookmark handler for EWW buffers. 11959Default 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
13372disabled. 13433disabled.
13373 13434
13374(fn &optional ARG)" t) 13435(fn &optional ARG)" t)
13375(autoload 'turn-on-flyspell "flyspell" "\
13376Unconditionally turn on Flyspell mode.")
13377(autoload 'turn-off-flyspell "flyspell" "\
13378Unconditionally turn off Flyspell mode.")
13379(autoload 'flyspell--mode-off "flyspell" "\ 13436(autoload 'flyspell--mode-off "flyspell" "\
13380Turn Flyspell mode off.") 13437Turn 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" "\
13389Flyspell whole buffer." t) 13446Flyspell whole buffer." t)
13447(define-obsolete-function-alias 'turn-on-flyspell #'flyspell-mode "31.1")
13448(autoload 'turn-off-flyspell "flyspell" "\
13449Unconditionally 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.
15041Major mode for editing go.mod files, powered by tree-sitter. 15102Major 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" "\
15106Major 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).
15624The return value is the last VAL in the list. 15690The 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" "\
15694Increment generalized variable PLACE by DELTA (default to 1).
15695
15696The DELTA is first added to PLACE, and then stored in PLACE.
15697Return the incremented value of PLACE.
15698
15699For more information about generalized variables, see Info node
15700`(elisp) Generalized Variables'.
15701
15702See also `decf'.
15703
15704(fn PLACE &optional DELTA)" nil t)
15705(autoload 'decf "gv" "\
15706Decrement generalized variable PLACE by DELTA (default to 1).
15707
15708The DELTA is first subtracted from PLACE, and then stored in PLACE.
15709Return the decremented value of PLACE.
15710
15711For more information about generalized variables, see Info node
15712`(elisp) Generalized Variables'.
15713
15714See 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" "\
15629Return a reference to PLACE. 15719Return 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" "\
15689Insert X-Payment and X-Hashcash headers with a payment for ARG.
15690
15691(fn ARG)" t)
15692(autoload 'hashcash-insert-payment-async "hashcash" "\
15693Insert X-Payment and X-Hashcash headers with a payment for ARG
15694Only start calculation. Results are inserted when ready.
15695
15696(fn ARG)" t)
15697(autoload 'hashcash-verify-payment "hashcash" "\
15698Verify a hashcash payment.
15699
15700(fn TOKEN &optional RESOURCE AMOUNT)")
15701(autoload 'mail-add-payment "hashcash" "\
15702Add X-Payment: and X-Hashcash: headers with a hashcash payment
15703for each recipient address. Prefix arg sets default payment temporarily.
15704Set 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" "\
15709Add X-Payment: and X-Hashcash: headers with a hashcash payment
15710for each recipient address. Prefix arg sets default payment temporarily.
15711Calculation is asynchronous.
15712
15713(fn &optional ARG)" t)
15714(autoload 'mail-check-payment "hashcash" "\
15715Look for a valid X-Payment: or X-Hashcash: header.
15716Prefix 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
15797enabling buffer local values. It sets the actual value to nil. 15851enabling buffer local values. It sets the actual value to nil.
15798Thus, Custom distinguishes between a nil value and other values 15852Thus, Custom distinguishes between a nil value and other values
15799that disable the feature, which Custom identifies with `never'. 15853that disable the feature, which Custom identifies with `never'.
15800The default is `never'.") 15854The default is `never'.
15855
15856Eldoc uses the echo area to display documentation. As such it
15857conflicts with `help-at-pt-display-when-idle' due to the use of
15858the 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" "\
15803Go to the start of the next region with non-nil PROP property. 15862Go 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)) "\
16503Alist for initializing the hideshow variables for different modes. 16562Alist for initializing the hideshow variables for different modes.
16504Each element has the form 16563Each 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.
17034OPSTRING is a string which will be displayed to the user after the 17093OPSTRING is a string which will be displayed to the user after the
17035operation is complete, in the form: 17094operation is complete, in the form:
17036 \"Operation complete; OPSTRING x buffers\" 17095 \"Operation complete; OPSTRING x buffers\"
17096OPSTRING may also be a function that returns prompt text.
17037ACTIVE-OPSTRING is a string which will be displayed to the user in a 17097ACTIVE-OPSTRING is a string which will be displayed to the user in a
17038confirmation message, in the form: 17098confirmation message, in the form:
17039 \"Really ACTIVE-OPSTRING x buffers?\" 17099 \"Really ACTIVE-OPSTRING x buffers?\"
17100ACTIVE-OPSTRING may also be a function that returns prompt text, or
17101if DOCUMENTATION is not provided, ACTIVE-OPSTRING should return
17102documentation text.
17040BEFORE is a form to evaluate before start the operation. 17103BEFORE is a form to evaluate before start the operation.
17041AFTER is a form to evaluate once the operation is complete. 17104AFTER is a form to evaluate once the operation is complete.
17042COMPLEX means this function is special; if COMPLEX is nil BODY 17105COMPLEX 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" "\
19191Read a Hiragana string from the minibuffer, prompting with string PROMPT. 19254Read a Hiragana string from the minibuffer, prompting with string PROMPT.
19192If non-nil, second arg INITIAL-INPUT is a string to insert before reading. 19255If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
19256Return 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.
20221Matching addresses are excluded from the Cc field in replies, and 20280Matching addresses are excluded from the Cc field in replies, and
20222also the To field, unless this would leave an empty To field.") 20281also 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") "\
20284List of localized \"Re\" abbreviations in various languages.
20285Each component can be a regular expression or a simple string. Matching
20286is 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" "\
20225Return non-nil if FILE is a Babyl file. 20290Return 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" "\
20675Major 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" "\
21179Major mode for editing HTML with embedded JavaScript and CSS.
21180Powered 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
21640hemisphere you're in.) 21724hemisphere you're in.)
21641 21725
21642To test this function, evaluate: 21726To 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
21657middle button in Tk text widgets. 21741middle button in Tk text widgets.
21658 21742
21659To test this function, evaluate: 21743To 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" "\
21745Read a character set from the minibuffer, prompting with string PROMPT. 21829Read a character set from the minibuffer, prompting with string PROMPT.
21746It must be an Emacs character set listed in the variable `charset-list'. 21830It must be an Emacs character set listed in the variable `charset-list'.
21831Return the charset as a symbol.
21747 21832
21748Optional arguments are DEFAULT-VALUE and INITIAL-INPUT. 21833Optional arguments are DEFAULT-VALUE and INITIAL-INPUT.
21749DEFAULT-VALUE, if non-nil, is the default value. 21834DEFAULT-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.
23465When called with a `C-1' (one) prefix, force prompting for a date when 23550When called with a `C-1' (one) prefix, force prompting for a date when
23466a datetree entry is made. 23551a datetree entry is made.
23467 23552
23468ELisp programs can set KEYS to a string associated with a template 23553Elisp programs can set KEYS to a string associated with a template
23469in `org-capture-templates'. In this case, interactive selection 23554in `org-capture-templates'. In this case, interactive selection
23470will be bypassed. 23555will be bypassed.
23471 23556
@@ -24032,7 +24117,8 @@ For each archive configured in the variable `package-archives',
24032inform Emacs about the latest versions of all packages it offers, 24117inform Emacs about the latest versions of all packages it offers,
24033and make them available for download. 24118and make them available for download.
24034Optional argument ASYNC specifies whether to perform the 24119Optional argument ASYNC specifies whether to perform the
24035downloads in the background. 24120downloads in the background. This is always the case when the command
24121is 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" "\
24047Install the package PKG. 24133Install the package PKG.
24048PKG can be a `package-desc' or a symbol naming one of the 24134
24049available packages in an archive in `package-archives'. 24135PKG can be a `package-desc', or a symbol naming one of the available
24136packages in an archive in `package-archives'.
24050 24137
24051Mark the installed package as selected by adding it to 24138Mark 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" "\
24067Upgrade package NAME if a newer version exists. 24154Upgrade package NAME if a newer version exists.
24068 24155
24156NAME 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" "\
24071Refresh package list and upgrade all packages. 24160Refresh 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" "\
24276Upload the Emacs Lisp package FILE to the package archive.
24277Interactively, prompt for FILE. The package is considered a
24278single-file package if FILE ends in \".el\", and a multi-file
24279package if FILE ends in \".tar\".
24280Automatically extract package attributes and update the archive's
24281contents list with this information.
24282If `package-archive-upload-base' does not specify a valid upload
24283destination, prompt for one. If the directory does not exist, it
24284is created. The directory need not have any initial contents
24285(i.e., you can use this command to populate an initially empty
24286archive).
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) "\
25933Keymap for project commands.") 26003Keymap 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
26001for VCS directories listed in `vc-directory-exclusion-list'. 26071for 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" "\
26075Visit the file that matches the current one, in another project.
26076It will skip to the same line number as well.
26077A matching file has the same file name relative to the project root.
26078When called during switching to another project, this command will
26079detect it and use the override. Otherwise, it prompts for the project
26080to use from the known list." t)
26004(autoload 'project-find-dir "project" "\ 26081(autoload 'project-find-dir "project" "\
26005Start Dired in a directory inside the current project. 26082Start 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
26010Start Dired in the current project's root." t) 26087Start Dired in the current project's root." t)
26011(autoload 'project-vc-dir "project" "\ 26088(autoload 'project-vc-dir "project" "\
26012Run VC-Dir in the current project's root." t) 26089Run VC-Dir in the current project's root." t)
26090(autoload 'project-customize-dirlocals "project" "\
26091Run `customize-dirlocals' in current project's root." t)
26013(autoload 'project-shell "project" "\ 26092(autoload 'project-shell "project" "\
26014Start an inferior shell in the current project's root directory. 26093Start an inferior shell in the current project's root directory.
26015If a buffer already exists for running a shell in the project's root, 26094If 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.
26110Also see the `project-kill-buffers-display-buffer-list' variable. 26189Also 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" "\
26193Like `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" "\
26114Add project PR to the front of the project list. 26197Add project PR to the front of the project list.
26198If project PR satisfies `project-list-exclude', then nothing is done.
26115Save the result in `project-list-file' if the list of projects 26199Save the result in `project-list-file' if the list of projects
26116has changed, and NO-WRITE is nil. 26200has 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
26492at point. If there is only one such suggestion, act without 26576at point. If there is only one such suggestion, act without
26493asking. 26577asking.
26494 26578
26579If the buffer does not belong to a project, the import statement is
26580searched under the buffer's default directory. For example, if the file
26581is located directly under the home directory, all files under the home
26582directory will be searched. Please note that this can take a long time
26583and may appear to hang.
26584
26495When calling from Lisp, use a non-nil NAME to restrict the 26585When calling from Lisp, use a non-nil NAME to restrict the
26496suggestions to imports defining NAME. 26586suggestions to imports defining NAME.
26497 26587
@@ -26513,7 +26603,17 @@ asking.
26513(autoload 'python-sort-imports "python" "\ 26603(autoload 'python-sort-imports "python" "\
26514Sort Python imports in the current buffer." t) 26604Sort Python imports in the current buffer." t)
26515(autoload 'python-fix-imports "python" "\ 26605(autoload 'python-fix-imports "python" "\
26516Add missing imports and remove unused ones from the current buffer." t) 26606Add missing imports and remove unused ones from the current buffer.
26607
26608If there are missing imports, ask for an import statement using all
26609imports found in the current project as suggestions. If there is only
26610one such suggestion, act without asking.
26611
26612If the buffer does not belong to a project, the import statement is
26613searched under the buffer's default directory. For example, if the file
26614is located directly under the home directory, all files under the home
26615directory will be searched. Please note that this can take a long time
26616and may appear to hang." t)
26517(autoload 'python-base-mode "python" "\ 26617(autoload 'python-base-mode "python" "\
26518Generic major mode for editing Python files. 26618Generic 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" "\
29575Default BOOKMARK handler for shell buffers.
29576Create a shell buffer with its `default-directory', shell process, and
29577buffer name from the bookmark. If there is an existing shell buffer of
29578the same name, default `shell-mode' behavior is to reuse that buffer.
29579
29580For a remote shell `default-directory' will be the remote file name.
29581Remote shell buffers reuse existing connections that match the remote
29582file name, or may prompt you to create a new connection. For ad-hoc
29583multi-hop remote connections, see Info node `(tramp)Ad-hoc multi-hops'.
29584
29585If called with a single \\[universal-argument] prefix, a new shell
29586buffer will be created if there is an existing buffer with the same
29587name. The new buffer name is made unique using `rename-uniquely', which
29588see.
29589
29590If called with a double \\[universal-argument] prefix, new remote
29591connections are inhibited, though an existing connection will be reused.
29592You can make a remote connection manually by reloading the buffer using
29593\\[find-alternate-file] or create a new shell using \\[shell].
29594
29595If called with a triple \\[universal-argument] prefix, a new buffer will
29596be 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" "\
29548Pop to a buffer with short documentation summary for functions in GROUP. 29673Pop to a buffer with short documentation summary for functions in GROUP.
29674Interactively, prompt for GROUP.
29549If FUNCTION is non-nil, place point on the entry for FUNCTION (if any). 29675If FUNCTION is non-nil, place point on the entry for FUNCTION (if any).
29550If SAME-WINDOW, don't pop to a new window. 29676If 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" "\
29706Open ManageSieve SERVER.
29707Optional argument PORT, if non-nil, specifies which port use;
29708otherwise it defaults to `sieve-manage-default-port'.
29580 29709
29710When called interactively, prompt for SERVER and PORT. If PORT is not
29711specified, 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 29715Upload script NAME to currently opened server.
29716If NAME is nil, detect it from script buffer name.
29717If 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 29721Upload 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 29725Upload 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" "\
30520Open or close the `speedbar'.
30521Positive ARG means turn on, negative turn off.
30522A nil ARG means toggle. If `speedbar-prefer-window' is t, open the
30523speedbar 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" "\
30388Enable or disable speedbar. Positive ARG means turn on, negative turn off. 30528Enable or disable speedbar.
30389A nil ARG means toggle. Once the speedbar frame is activated, a buffer in 30529Positive ARG means turn on, negative turn off. A nil ARG means toggle.
30530Once the speedbar frame is activated, a buffer in `speedbar-mode' will
30531be 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" "\
30538Enable or disable speedbar window mode.
30539Positive ARG means turn on, negative turn off.
30540A 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
30391supported at a time. 30542supported 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
30955included in the resulting string. If nil, no prompt will be 31106included in the resulting string. If nil, no prompt will be
30956inserted in the buffer. 31107inserted in the buffer.
30957 31108
31109When the user exits recursive edit, this function returns the
31110edited STRING.
31111
30958Also see `string-edit'. 31112Also 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" "\
31184Return the width of STRING in pixels. 31338Return the width of STRING in pixels.
31185If BUFFER is non-nil, use the face remappings from that buffer when 31339If BUFFER is non-nil, use the face remappings, alternative and default
31186determining the width. 31340properties from that buffer when determining the width.
31187If you call this function to measure pixel width of a string 31341If you call this function to measure pixel width of a string
31188with embedded newlines, it returns the width of the widest 31342with embedded newlines, it returns the width of the widest
31189substring that does not include newlines. 31343substring that does not include newlines.
@@ -31212,7 +31366,7 @@ this defaults to the current buffer.
31212Query the user for a process and return the process object. 31366Query 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" "\
33137Update any time stamp strings (timestamps) in the buffer. 33291Update any time stamp strings (timestamps) in the buffer.
33138Look for a time stamp template and update it with the current date, 33292Look for a time stamp template and update it with the current
33139time, and/or other info. 33293date, time, author, and/or other info.
33140 33294
33141The template, which you manually create on one of the first 8 lines 33295The template, which you manually create on one of the first 8 lines
33142of the file before running this function, by default can look like 33296of 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) "\
33644Whether Tramp is enabled. 33794Whether Tramp is enabled.
33645If it is set to nil, all remote file names are used literally. Don't 33795If it is set to nil, all remote file names are used literally. Don't
33646set it manually, use `inhibit-remote-files' or `without-remote-files' 33796set 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" "\
33879Visit the current file again with superuser, or root, permissions.
33880
33881By default this is done using the \"sudo\" Tramp method.
33882You can customize `tramp-file-name-with-method' to change this.
33883
33884Interactively, with a prefix argument, prompt for a different method.
33885
33886If the buffer visits a file, the file is replaced.
33887If the buffer runs `dired', the buffer is reverted." t)
33888(autoload 'tramp-dired-find-file-with-sudo "tramp-cmds" "\
33889Visit the file or directory named on this line as the superuser.
33890
33891By default this is done using the \"sudo\" Tramp method.
33892YOu can customize `tramp-file-name-with-method' to change this.
33893
33894Interactively, 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" "\
33811Insert a SUFFIX into PREFIX before LOC. 33978Insert a SUFFIX into PREFIX before LOC.
33812PREFIX is a prefix command, a symbol. 33979PREFIX 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).
33818Remove a conflicting binding unless optional KEEP-OTHER is 33985Remove 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'.
33820See info node `(transient)Modifying Existing Transients'. 33989See 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).
33832Remove a conflicting binding unless optional KEEP-OTHER is 34001Remove 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'.
33834See info node `(transient)Modifying Existing Transients'. 34005See 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'.")
37052Format for displaying the warning type in the warning message. 37225Format for displaying the warning type in the warning message.
37053The result of formatting the type this way gets included in the 37226The result of formatting the type this way gets included in the
37054message under the control of the string in `warning-levels'.") 37227message under the control of the string in `warning-levels'.")
37228(defvar warning-inhibit-types nil "\
37229Like `warning-suppress-log-types', but intended for programs to let-bind.")
37055(autoload 'display-warning "warnings" "\ 37230(autoload 'display-warning "warnings" "\
37056Display a warning message, MESSAGE. 37231Display a warning message, MESSAGE.
37057TYPE is the warning type: either a custom group name (a symbol), 37232TYPE is the warning type: either a custom group name (a symbol),
@@ -37798,6 +37973,23 @@ disabled.
37798Return non-nil if WIDGET is a widget. 37973Return non-nil if WIDGET is a widget.
37799 37974
37800(fn WIDGET)") 37975(fn WIDGET)")
37976(autoload 'widget-put "wid-edit" "\
37977In WIDGET, set PROPERTY to VALUE.
37978The value can later be retrieved with `widget-get'.
37979
37980(fn WIDGET PROPERTY VALUE)")
37981(autoload 'widget-get "wid-edit" "\
37982In WIDGET, get the value of PROPERTY.
37983The value could either be specified when the widget was created, or
37984later with `widget-put'.
37985
37986(fn WIDGET PROPERTY)")
37987(autoload 'widget-apply "wid-edit" "\
37988Apply the value of WIDGET's PROPERTY to the widget itself.
37989Return the result of applying the value of PROPERTY to WIDGET.
37990ARGS 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" "\
37802Prompt for a value matching WIDGET, using PROMPT. 37994Prompt for a value matching WIDGET, using PROMPT.
37803The current value is assumed to be VALUE, unless UNBOUND is non-nil. 37995The 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
37841If no window is at the desired location, an error is signaled 38033If no window is at the desired location, an error is signaled
37842unless `windmove-create-window' is non-nil and a new window is created. 38034unless `windmove-create-window' is non-nil and a new window is created.
37843 38035
37844(fn &optional ARG)" t) 38036If `windmove-allow-repeated-command-override' is true and this commnad
38037stopped 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" "\
37846Select the window above the current one. 38042Select the window above the current one.
37847With no prefix argument, or with prefix argument equal to zero, \"up\" 38043With no prefix argument, or with prefix argument equal to zero, \"up\"
@@ -37851,7 +38047,11 @@ negative ARG) of the current window.
37851If no window is at the desired location, an error is signaled 38047If no window is at the desired location, an error is signaled
37852unless `windmove-create-window' is non-nil and a new window is created. 38048unless `windmove-create-window' is non-nil and a new window is created.
37853 38049
37854(fn &optional ARG)" t) 38050If `windmove-allow-repeated-command-override' is true and this commnad
38051stopped 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" "\
37856Select the window to the right of the current one. 38056Select the window to the right of the current one.
37857With no prefix argument, or with prefix argument equal to zero, 38057With no prefix argument, or with prefix argument equal to zero,
@@ -37861,7 +38061,11 @@ bottom edge (for negative ARG) of the current window.
37861If no window is at the desired location, an error is signaled 38061If no window is at the desired location, an error is signaled
37862unless `windmove-create-window' is non-nil and a new window is created. 38062unless `windmove-create-window' is non-nil and a new window is created.
37863 38063
37864(fn &optional ARG)" t) 38064If `windmove-allow-repeated-command-override' is true and this commnad
38065stopped 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" "\
37866Select the window below the current one. 38070Select the window below the current one.
37867With no prefix argument, or with prefix argument equal to zero, 38071With 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
37871If no window is at the desired location, an error is signaled 38075If no window is at the desired location, an error is signaled
37872unless `windmove-create-window' is non-nil and a new window is created. 38076unless `windmove-create-window' is non-nil and a new window is created.
37873 38077
37874(fn &optional ARG)" t) 38078If `windmove-allow-repeated-command-override' is true and this commnad
38079stopped 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 "\
37876Non-nil if Windmove mode is enabled. 38084Non-nil if Windmove mode is enabled.
37877See the `windmove-mode' command 38085See the `windmove-mode' command
@@ -38163,6 +38371,12 @@ command `winner-undo'. By default this one is bound to the key
38163sequence \\`C-c <left>'. If you change your mind (while undoing), 38371sequence \\`C-c <left>'. If you change your mind (while undoing),
38164you can press \\`C-c <right>' (calling `winner-redo'). 38372you can press \\`C-c <right>' (calling `winner-redo').
38165 38373
38374If 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
38376configuration of the current tab to another's (old) window
38377configuration. `tab-bar-history-mode' provides tab-specific window
38378configuration history avoiding this problem.
38379
38166This is a global minor mode. If called interactively, toggle the 38380This 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
38168mode, and if it is zero or negative, disable the mode. 38382mode, and if it is zero or negative, disable the mode.
@@ -38560,9 +38774,14 @@ Yank media (images, HTML and the like) from the clipboard.
38560This command depends on the current major mode having support for 38774This command depends on the current major mode having support for
38561accepting the media type. The mode has to register itself using 38775accepting the media type. The mode has to register itself using
38562the `yank-media-handler' mechanism. 38776the `yank-media-handler' mechanism.
38777Optional argument NOSELECT non-nil (interactively, with a prefix
38778argument) means to skip auto-selecting the best MIME type and ask for
38779the MIME type to use.
38563 38780
38564Also see `yank-media-types' for a command that lets you explore 38781Also see `yank-media-types' for a command that lets you explore
38565all the different selection types." t) 38782all the different selection types.
38783
38784(fn &optional NOSELECT)" t)
38566(autoload 'yank-media-handler "yank-media" "\ 38785(autoload 'yank-media-handler "yank-media" "\
38567Register HANDLER for dealing with `yank-media' actions for TYPES. 38786Register HANDLER for dealing with `yank-media' actions for TYPES.
38568TYPES should be a MIME media type symbol, a regexp, or a list 38787TYPES 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" "\
38831Highlight the line around POINT, unhighlighting before next command.
38832If POINT is nil or missing, the current point is used instead.
38833
38834Optional argument FACE specifies the face to do the highlighting.
38835
38836(fn &optional POINT FACE)")
38837(autoload 'pulse-momentary-highlight-region "pulse" "\
38838Highlight between START and END, unhighlighting before next command.
38839Optional 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" "\
38848Create a new treesit generic mode MODE.
38849
38850A \"treesit\" mode is a simple major mode with basic support for
38851Font Lock mode, but otherwise does not have any special keystrokes
38852or functionality available.
38853
38854MODE is the name of the command for the treesit generic mode; don't
38855quote it. The optional DOCSTRING is the documentation for the mode
38856command. If you do not supply it, `define-treesit-generic-mode'
38857uses a default documentation string instead.
38858
38859KEYWORD-ARGS are optional arguments in the form of pairs of keyword
38860and 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
38876BODY are forms to execute just before running the
38877hooks for the new mode. Do not use `interactive' here.
38878These forms do some additional setup. The mode command calls
38879these functions just before it runs `treesit-major-mode-setup'
38880and the mode hook `MODE-hook'.
38881
38882See at the bottom of the file treesit-x.el for some examples
38883of `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" "\
38889Go 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