From: Eshel Yaron Date: Thu, 24 Oct 2024 19:01:16 +0000 (+0200) Subject: ; Update lisp/ldefs-boot.el X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a55a79c4b760f34b930c70c6f42aec469a4cdcd3;p=emacs.git ; Update lisp/ldefs-boot.el --- diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index c78d8f55766..5816f94b138 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -5012,6 +5012,13 @@ 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))) +(autoload 'native-compile-directory "comp" "\ +Native compile if necessary all the .el files present in DIRECTORY. +Each .el file is native compiled if the corresponding .eln file is not +found inside the current `native-comp-eln-load-path'. The search within +DIRECTORY is perfomed recursively. + +(fn DIRECTORY)") (autoload 'batch-native-compile "comp" "\ Perform batch native compilation of remaining command-line arguments. @@ -9163,7 +9170,6 @@ or nil, use a compact 80-column format. ;;; Generated autoloads from progmodes/eglot.el (push (purecopy '(eglot 1 17)) package--builtin-versions) -(define-obsolete-function-alias 'eglot-update #'eglot-upgrade-eglot "29.1") (autoload 'eglot "eglot" "\ Start LSP server for PROJECT's buffers under MANAGED-MAJOR-MODES. @@ -9218,10 +9224,6 @@ command only needs to be invoked once per project, as all other files of a given major mode visited within the same project will automatically become managed with no further user intervention needed.") -(autoload 'eglot-upgrade-eglot "eglot" "\ -Update Eglot to latest version. - -(fn &rest _)" t) (put 'eglot-workspace-configuration 'safe-local-variable #'listp) (put 'eglot--debbugs-or-github-bug-uri 'bug-reference-url-format t) (defun eglot--debbugs-or-github-bug-uri nil (format (if (string= (match-string 2) "github") "https://github.com/joaotavora/eglot/issues/%s" "https://debbugs.gnu.org/%s") (match-string 3))) @@ -10127,7 +10129,6 @@ Look at CONFIG and try to expand GROUP. (dolist (symbol '( erc-sasl erc-spelling ; 29 erc-imenu erc-nicks)) ; 30 (custom-add-load symbol symbol)) -(custom-autoload 'erc-modules "erc") (autoload 'erc-select-read-args "erc" "\ Prompt for connection parameters and return them in a plist. By default, collect `:server', `:port', `:nickname', and @@ -12141,6 +12142,19 @@ The connection-local value of `path-separator'.") The connection-local value of `null-device'.") (register-definition-prefixes "files-x" '("connection-local-" "dir-locals-to-string" "modify-" "read-")) + +;;; Generated autoloads from filet.el + +(autoload 'filet "filet" "\ +Operate on file names in your `kill-ring'. + +Use `0 w' in a Dired buffer to grab some absolute file names, then later +invoke this command in another Dired buffer to copy/move/link those +files to that directory. + +(fn)" t) +(register-definition-prefixes "filet" '("filet-")) + ;;; Generated autoloads from find-cmd.el @@ -12651,24 +12665,6 @@ Turn Flymake mode on.") Turn Flymake mode off.") (register-definition-prefixes "flymake" '("flymake-")) - -;;; Generated autoloads from progmodes/flymake-cc.el - -(autoload 'flymake-cc "flymake-cc" "\ -Flymake backend for GNU-style C compilers. -This backend uses `flymake-cc-command' (which see) to launch a -process that is passed the current buffer's contents via stdin. -REPORT-FN is Flymake's callback. - -(fn REPORT-FN &rest ARGS)") -(register-definition-prefixes "flymake-cc" '("flymake-cc-")) - - -;;; Generated autoloads from progmodes/flymake-proc.el - -(push (purecopy '(flymake-proc 1 0)) package--builtin-versions) -(register-definition-prefixes "flymake-proc" '("flymake-proc-")) - ;;; Generated autoloads from textmodes/flyspell.el @@ -25347,6 +25343,8 @@ Optional argument FACE specifies the face to do the highlighting. ;;; Generated autoloads from progmodes/python.el (push (purecopy '(python 0 28)) package--builtin-versions) +(defconst python--auto-mode-alist-regexp "\\(?:\\.\\(?:p\\(?:th\\|y[iw]?\\)\\)\\|/\\(?:SCons\\(?:\\(?:crip\\|truc\\)t\\)\\)\\)\\'") +(add-to-list 'auto-mode-alist (cons python--auto-mode-alist-regexp 'python-mode)) (add-to-list 'interpreter-mode-alist (cons (purecopy "python[0-9.]*") 'python-mode)) (autoload 'run-python "python" "\ Run an inferior Python process.