]> git.eshelyaron.com Git - emacs.git/commitdiff
Make 'toml-ts-mode' optional
authorEli Zaretskii <eliz@gnu.org>
Thu, 5 Jan 2023 06:40:07 +0000 (08:40 +0200)
committerEli Zaretskii <eliz@gnu.org>
Thu, 5 Jan 2023 06:40:07 +0000 (08:40 +0200)
* etc/NEWS: Reflect the fact that 'toml-ts-mode' is optional.

* lisp/textmodes/toml-ts-mode.el (auto-mode-alist): Don't autoload
the addition of 'toml-ts-mode'.  (Bug#60559)

etc/NEWS
lisp/textmodes/toml-ts-mode.el

index 91e470306c73e1a0a1842198c1161b2ed5daa6d6..4f88aa82cd9a80aef63cd56d399264e4b21a2e57 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -3251,9 +3251,8 @@ extension is ".cmake".
 
 +++
 *** New major mode 'toml-ts-mode'.
-A major mode based on the tree-sitter library for editing files
-written in TOML, a format for writing configuration files.  It is
-auto-enabled for files with the ".toml" extension.
+An optional major mode based on the tree-sitter library for editing
+files written in TOML, a format for writing configuration files.
 
 +++
 *** New major mode 'go-ts-mode'.
index 1b68632f58ccd66f64d52a9b636eb79b1479ae23..2430c5f3e769614f254e5ba465d307ef8bb82350 100644 (file)
@@ -117,7 +117,6 @@ Return nil if there is no name or if NODE is not a defun node."
      (or (treesit-node-text (treesit-node-child node 1) t)
          "Root table"))))
 
-;;;###autoload
 (add-to-list 'auto-mode-alist '("\\.toml\\'" . toml-ts-mode))
 
 ;;;###autoload