emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 4922de626f: ; Fix doc strings of 'treesit-install-language-gram


From: Eli Zaretskii
Subject: emacs-29 4922de626f: ; Fix doc strings of 'treesit-install-language-grammar'
Date: Fri, 30 Dec 2022 10:11:40 -0500 (EST)

branch: emacs-29
commit 4922de626f05f0c26bc732b082c30c5c18a88416
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; Fix doc strings of 'treesit-install-language-grammar'
    
    * lisp/treesit.el (treesit-install-language-grammar)
    (treesit--install-language-grammar-1): Doc fixes.
---
 lisp/treesit.el | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/lisp/treesit.el b/lisp/treesit.el
index b120ca68c5..d12c19dde8 100644
--- a/lisp/treesit.el
+++ b/lisp/treesit.el
@@ -2632,14 +2632,14 @@ CC and C++ are C and C++ compilers, default to \"cc\" 
and
 \"c++\", respectively.")
 
 (defun treesit-install-language-grammar (lang)
-  "Install language grammar for LANG.
+  "Build and install the tree-sitter language grammar library for LANG.
 
-This command requires git, a C compiler and (sometimes) a C++
-compiler to exist and locatable in the executable paths.  It also
-requires that the recipe for LANG exists in
-`treesit-language-source-alist'.
+This command requires Git, a C compiler and (sometimes) a C++ compiler,
+and the linker to be installed and on PATH.  It also requires that the
+recipe for LANG exists in `treesit-language-source-alist'.
 
-Current executable paths can be checked by calling `exec-path'."
+See `exec-path' for the current path where Emacs looks for
+executable programs, such as the C/C++ compiler and linker."
   (interactive (list (intern
                       (completing-read
                        "Language: "
@@ -2682,10 +2682,10 @@ content as signal data, and erase buffer afterwards."
 
 (defun treesit--install-language-grammar-1
     (out-dir lang url &optional source-dir grammar-dir cc c++)
-  "Install and compile a tree-sitter language grammar.
+  "Install and compile a tree-sitter language grammar library.
 
-OUT-DIR is the direcotory to put the compiled library file,
-default to ~/.emacs.d/tree-sitter.
+OUT-DIR is the directory to put the compiled library file, it
+defaults to ~/.emacs.d/tree-sitter.
 
 For LANG, URL, SOURCE-DIR, GRAMMAR-DIR, CC, C++, see
 `treesit-language-source-alist'.  If anything goes wrong, this



reply via email to

[Prev in Thread] Current Thread [Next in Thread]