mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-10 00:00:39 -08:00
Merge from origin/emacs-29
8360e12f0eUpdate to Org 9.6.1-23-gc45a059058601308; * doc/emacs/misc.texi (Document View): Remove @footnote...197f994384Document tree-sitter features in the user manualb73539832d; Remove treesit--font-lock-fast-mode-grace-count64fee21d5fFix dockerfile-ts-mode line continuation indentation (bug...1970726e26Use treesit-subtree-stat to determine treesit--font-lock-...382e018856Add treesit-subtree-stata3003492acMove c-ts-mode--statement-offset to c-ts-common.el4b1714571c; Fix byte-compile warnings in c-ts-mode.elf50cb7d7c4; Improve docstring of c-ts-mode--indent-style-setter1c3ca3bb64Fix <> syntax in rust-ts-mode56e8607dc9Fix spurious errors on Windows when deleting temporary *....2bd0b94753Fix java class member without access modifier (bug#61115)1de6ebf287Make treesit-font-lock-level a defcustom6e50ee8bbbAdd c-ts-mode-set-style and :set for c-ts-mode-indent-style450db0587aMinor documentation improvements for outline-minor-mode (...578e892671; * doc/lispref/variables.texi (File Local Variables): Im...bc5ee2b7bf; * src/comp.c: Remove Local Variables section to avoid w...362678d90epython.el: Use correct regexp when enabling python-ts-mode76bb46db9d; * doc/emacs/frames.texi (Mouse References): Improve ind... # Conflicts: # doc/emacs/programs.texi # etc/NEWS # lisp/progmodes/c-ts-mode.el
This commit is contained in:
commit
207a0d9408
25 changed files with 566 additions and 226 deletions
|
|
@ -4112,13 +4112,16 @@ the deferred compilation mechanism."
|
|||
(native-elisp-load data)))
|
||||
;; We may have created a temporary file when we're being
|
||||
;; called with something other than a file as the argument.
|
||||
;; Delete it.
|
||||
;; Delete it if we can.
|
||||
(when (and (not (stringp function-or-file))
|
||||
(not output)
|
||||
comp-ctxt
|
||||
(comp-ctxt-output comp-ctxt)
|
||||
(file-exists-p (comp-ctxt-output comp-ctxt)))
|
||||
(delete-file (comp-ctxt-output comp-ctxt))))))))
|
||||
(cond ((eq 'windows-nt system-type)
|
||||
;; We may still be using the temporary .eln file.
|
||||
(ignore-errors (delete-file (comp-ctxt-output comp-ctxt))))
|
||||
(t (delete-file (comp-ctxt-output comp-ctxt))))))))))
|
||||
|
||||
(defun native-compile-async-skip-p (file load selector)
|
||||
"Return non-nil if FILE's compilation should be skipped.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue