From 2e2df60f19059fc1e2ba294c79667060c94bf489 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Sun, 14 Jul 2024 07:56:23 +0200 Subject: [PATCH] ; Update ldefs-boot.el --- lisp/ldefs-boot.el | 158 ++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 142 insertions(+), 16 deletions(-) diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index d537db2b15e..51739dfcfac 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -3101,7 +3101,7 @@ and corresponding effects. ;;; Generated autoloads from progmodes/c-ts-common.el -(register-definition-prefixes "c-ts-common" '("c-ts-common-")) +(register-definition-prefixes "c-ts-common" '("c-ts-")) ;;; Generated autoloads from progmodes/c-ts-mode.el @@ -5011,14 +5011,13 @@ Search happens in `native-comp-eln-load-path'. (fn FILENAME)") (autoload 'native-compile "comp" "\ Compile FUNCTION-OR-FILE into native code. -This is the synchronous entry-point for the Emacs Lisp native -compiler. FUNCTION-OR-FILE is a function symbol, a form, or the -filename of an Emacs Lisp source file. If OUTPUT is non-nil, use -it as the filename for the compiled object. If FUNCTION-OR-FILE -is a filename, if the compilation was successful return the -filename of the compiled object. If FUNCTION-OR-FILE is a -function symbol or a form, if the compilation was successful -return the compiled function. +This is the synchronous entry-point for the Emacs Lisp native compiler. +FUNCTION-OR-FILE is a function symbol, a form, an interpreted-function, +or the filename of an Emacs Lisp source file. If OUTPUT is non-nil, use +it as the filename for the compiled object. If FUNCTION-OR-FILE is a +filename, if the compilation was successful return the filename of the +compiled object. If FUNCTION-OR-FILE is a function symbol or a form, if +the compilation was successful return the compiled function. (fn FUNCTION-OR-FILE &optional OUTPUT)") (function-put 'native-compile 'function-type '(function ((or string symbol) &optional string) (or native-comp-function string))) @@ -7675,7 +7674,7 @@ move to that file's line in the directory listing. If the current buffer isn't visiting a file, Dired `default-directory'. If in Dired already, pop up a level and goto old directory's line. -In case the proper Dired file line cannot be found, refresh the dired +In case the proper Dired file line cannot be found, refresh the Dired buffer and try again. When OTHER-WINDOW is non-nil, jump to Dired buffer in other window. @@ -17275,7 +17274,9 @@ IMAGE must be an image created with `create-image' or `defimage'. IMAGE is displayed by putting an overlay into the current buffer with a `before-string' STRING that has a `display' property whose value is the image. STRING defaults to \"x\" if it's nil or omitted. -The overlay created by this function has the `put-image' property set to t. +Upon success, this function returns the created overlay with its +`put-image' property set to t. + POS may be an integer or marker. AREA is where to display the image. AREA nil or omitted means display it in the text area, a value of `left-margin' means @@ -21039,6 +21040,61 @@ will be computed and used. (autoload 'mml2015-self-encrypt "mml2015") (register-definition-prefixes "mml2015" '("mml2015-")) + +;;; Generated autoloads from mode-face.el + +(autoload 'mode-face-mode "mode-face" "\ +Enable per major mode face remappings. + +If the current major mode is derived from one of +`mode-face-modes', say `foo-mode', this minor mode remaps faces +in `mode-face-faces' to the face `mode-face-foo-mode'. + +By default, this remaps the `default' and `fringe' faces in +`comint-mode' and `help-mode' to `mode-face-comint-mode' and +`mode-face-help-mode', respectively. + +This is a minor mode. If called interactively, toggle the `Mode-Face +mode' mode. If the prefix argument is positive, enable the mode, and if +it is zero or negative, disable the mode. + +If called from Lisp, toggle the mode if ARG is `toggle'. Enable the +mode if ARG is nil, omitted, or is a positive number. Disable the mode +if ARG is a negative number. + +To check whether the minor mode is enabled in the current buffer, +evaluate `mode-face-mode'. + +The mode's hook is called both when the mode is enabled and when it is +disabled. + +(fn &optional ARG)" t) +(put 'mode-face-global-mode 'globalized-minor-mode t) +(defvar mode-face-global-mode nil "\ +Non-nil if Mode-Face-Global mode is enabled. +See the `mode-face-global-mode' command +for a description of this minor mode. +Setting this variable directly does not take effect; +either customize it (see the info node `Easy Customization') +or call the function `mode-face-global-mode'.") +(custom-autoload 'mode-face-global-mode "mode-face" nil) +(autoload 'mode-face-global-mode "mode-face" "\ +Toggle Mode-Face mode in all buffers. +With prefix ARG, enable Mode-Face-Global mode if ARG is positive; +otherwise, disable it. + +If called from Lisp, toggle the mode if ARG is `toggle'. +Enable the mode if ARG is nil, omitted, or is a positive number. +Disable the mode if ARG is a negative number. + +Mode-Face mode is enabled in all buffers where `mode-face-mode' would +do it. + +See `mode-face-mode' for more information on Mode-Face mode. + +(fn &optional ARG)" t) +(register-definition-prefixes "mode-face" '("mode-face-")) + ;;; Generated autoloads from mode-local.el @@ -25321,7 +25377,7 @@ of the project instance object. (put 'project-vc-include-untracked 'safe-local-variable #'booleanp) (put 'project-vc-name 'safe-local-variable #'stringp) (put 'project-vc-extra-root-markers 'safe-local-variable (lambda (val) (and (listp val) (not (memq nil (mapcar #'stringp val)))))) -(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) "\ +(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 "`" 'project-go-to-diagnostic) map) "\ Keymap for project commands.") (define-key ctl-x-map "p" project-prefix-map) (autoload 'project-other-window-command "project" "\ @@ -25473,6 +25529,10 @@ start with a space (which are for internal use). With prefix argument ARG, show only buffers that are visiting files. (fn &optional ARG)" t) +(autoload 'project-go-to-diagnostic "project" "\ +Go to Flymake diagnostic DIAG. + +(fn DIAG)" t) (put 'project-kill-buffers-display-buffer-list 'safe-local-variable #'booleanp) (autoload 'project-kill-buffers "project" "\ Kill the buffers belonging to the current project. @@ -26148,6 +26208,55 @@ of each directory. (register-definition-prefixes "radix-tree" '("radix-tree-")) + +;;; Generated autoloads from rainbow.el + +(autoload 'rainbow-mode "rainbow" "\ +Colorize strings that represent colors. + +This highlights strings such as \"#aabbcc\" or \"blue\" with their +corresponding colors. + +This is a minor mode. If called interactively, toggle the `Rainbow +mode' mode. If the prefix argument is positive, enable the mode, and if +it is zero or negative, disable the mode. + +If called from Lisp, toggle the mode if ARG is `toggle'. Enable the +mode if ARG is nil, omitted, or is a positive number. Disable the mode +if ARG is a negative number. + +To check whether the minor mode is enabled in the current buffer, +evaluate `rainbow-mode'. + +The mode's hook is called both when the mode is enabled and when it is +disabled. + +(fn &optional ARG)" t) +(register-definition-prefixes "rainbow" '("rainbow-")) + + +;;; Generated autoloads from rainbow-delimiters.el + +(autoload 'rainbow-delimiters-mode "rainbow-delimiters" "\ +Highlight nested parentheses, brackets, and braces according to their depth. + +This is a minor mode. If called interactively, toggle the +`Rainbow-Delimiters mode' mode. If the prefix argument is positive, +enable the mode, and if it is zero or negative, disable the mode. + +If called from Lisp, toggle the mode if ARG is `toggle'. Enable the +mode if ARG is nil, omitted, or is a positive number. Disable the mode +if ARG is a negative number. + +To check whether the minor mode is enabled in the current buffer, +evaluate `rainbow-delimiters-mode'. + +The mode's hook is called both when the mode is enabled and when it is +disabled. + +(fn &optional ARG)" t) +(register-definition-prefixes "rainbow-delimiters" '("rainbow-delimiters-")) + ;;; Generated autoloads from emacs-lisp/range.el @@ -26439,9 +26548,9 @@ do the work. EDITS is list of cons cells (FILE-OR-BUFFER . REPS), where FILE-OR-BUFFER is the file name or buffer to edit, and REPS is a list of replacements to perform in FILE-OR-BUFFER. Each element of REPS is a -list (BEG END STR TOKEN), where BEG and END are buffer positions to -delete and STR is the string to insert at BEG afterwards. TOKEN is an -arbitrary object that a refactor backend can provide in order to track +list (BEG END STR TOKEN), where BEG and END are positions to delete and +STR is the string to insert at BEG afterwards. TOKEN is an arbitrary +object that a refactor backend can provide in order to track applications of this replacement via `refactor-replacement-functions', which see. @@ -28153,6 +28262,23 @@ disabled. (fn &optional ARG)" t) (register-definition-prefixes "scroll-lock" '("scroll-lock-")) + +;;; Generated autoloads from search.el + +(autoload 'search "search" "\ +Go to and pulse region starting at BEG and ending at END. + +(fn BEG END)" t) +(autoload 'search-from-isearch "search" "\ + + +(fn BEG END)" t) +(autoload 'search-lines "search" "\ +Go to and pulse line starting at BEG and ending at END. + +(fn BEG END)" t) +(register-definition-prefixes "search" '("search-read-target")) + ;;; Generated autoloads from net/secrets.el @@ -37213,7 +37339,7 @@ available on your system. (fn &optional TOPIC RE-CACHE)" t) (autoload 'woman-dired-find-file "woman" "\ -In dired, run the WoMan man-page browser on this file." t) +In Dired, run the WoMan man-page browser on this file." t) (autoload 'woman-find-file "woman" "\ Find, decode and browse a specific UN*X man-page source file FILE-NAME. Use existing buffer if possible; reformat only if prefix arg given. -- 2.39.2