diff options
| author | Yuan Fu | 2023-01-02 14:15:05 -0800 |
|---|---|---|
| committer | Yuan Fu | 2023-01-02 14:25:54 -0800 |
| commit | 4ef12cfb1fc3f08fc17f0ed622ddfcb1d26cefc8 (patch) | |
| tree | 6a7ec66dff6281961adf2056cbb407f6cc007c86 | |
| parent | aab8ddca5e1bbbca0ab3d2241c34ccde7ebd6e1e (diff) | |
| download | emacs-4ef12cfb1fc3f08fc17f0ed622ddfcb1d26cefc8.tar.gz emacs-4ef12cfb1fc3f08fc17f0ed622ddfcb1d26cefc8.zip | |
; Fix tree-sitter manual title case
* doc/lispref/elisp.texi:
* doc/lispref/modes.texi:
* doc/lispref/parsing.texi: Change to title case.
| -rw-r--r-- | doc/lispref/elisp.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/modes.texi | 4 | ||||
| -rw-r--r-- | doc/lispref/parsing.texi | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi index fd06409fd59..c7dc330441f 100644 --- a/doc/lispref/elisp.texi +++ b/doc/lispref/elisp.texi | |||
| @@ -1370,7 +1370,7 @@ Parsing Program Source | |||
| 1370 | * Accessing Node Information:: Accessing node information. | 1370 | * Accessing Node Information:: Accessing node information. |
| 1371 | * Pattern Matching:: Pattern matching with query patterns. | 1371 | * Pattern Matching:: Pattern matching with query patterns. |
| 1372 | * Multiple Languages:: Parse text written in multiple languages. | 1372 | * Multiple Languages:: Parse text written in multiple languages. |
| 1373 | * Tree-sitter major modes:: Develop major modes using tree-sitter. | 1373 | * Tree-sitter Major Modes:: Develop major modes using tree-sitter. |
| 1374 | * Tree-sitter C API:: Compare the C API and the ELisp API. | 1374 | * Tree-sitter C API:: Compare the C API and the ELisp API. |
| 1375 | 1375 | ||
| 1376 | Syntax Descriptors | 1376 | Syntax Descriptors |
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index 9cd20532de6..dffd6653369 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi | |||
| @@ -2863,10 +2863,10 @@ matched by @var{regexp} and @var{pred} are not grouped under | |||
| 2863 | @var{name-fn} should be either @var{nil} or a function that takes a | 2863 | @var{name-fn} should be either @var{nil} or a function that takes a |
| 2864 | defun node and returns the name of that defun, e.g., the function name | 2864 | defun node and returns the name of that defun, e.g., the function name |
| 2865 | for a function definition. If @var{name-fn} is @var{nil}, | 2865 | for a function definition. If @var{name-fn} is @var{nil}, |
| 2866 | @code{treesit-defun-name} (@pxref{Tree-sitter major modes}) is used | 2866 | @code{treesit-defun-name} (@pxref{Tree-sitter Major Modes}) is used |
| 2867 | instead. | 2867 | instead. |
| 2868 | 2868 | ||
| 2869 | @code{treesit-major-mode-setup} (@pxref{Tree-sitter major modes}) | 2869 | @code{treesit-major-mode-setup} (@pxref{Tree-sitter Major Modes}) |
| 2870 | automatically sets up Imenu if this variable is non-@code{nil}. | 2870 | automatically sets up Imenu if this variable is non-@code{nil}. |
| 2871 | @end defvar | 2871 | @end defvar |
| 2872 | 2872 | ||
diff --git a/doc/lispref/parsing.texi b/doc/lispref/parsing.texi index 1ed59526a61..19a22c121de 100644 --- a/doc/lispref/parsing.texi +++ b/doc/lispref/parsing.texi | |||
| @@ -45,7 +45,7 @@ source files that mix multiple programming languages. | |||
| 45 | * Accessing Node Information:: Accessing node information. | 45 | * Accessing Node Information:: Accessing node information. |
| 46 | * Pattern Matching:: Pattern matching with query patterns. | 46 | * Pattern Matching:: Pattern matching with query patterns. |
| 47 | * Multiple Languages:: Parse text written in multiple languages. | 47 | * Multiple Languages:: Parse text written in multiple languages. |
| 48 | * Tree-sitter major modes:: Develop major modes using tree-sitter. | 48 | * Tree-sitter Major Modes:: Develop major modes using tree-sitter. |
| 49 | * Tree-sitter C API:: Compare the C API and the ELisp API. | 49 | * Tree-sitter C API:: Compare the C API and the ELisp API. |
| 50 | @end menu | 50 | @end menu |
| 51 | 51 | ||
| @@ -1675,7 +1675,7 @@ language of the buffer text at @var{pos}. This variable is used by | |||
| 1675 | @code{treesit-language-at}. | 1675 | @code{treesit-language-at}. |
| 1676 | @end defvar | 1676 | @end defvar |
| 1677 | 1677 | ||
| 1678 | @node Tree-sitter major modes | 1678 | @node Tree-sitter Major Modes |
| 1679 | @section Developing major modes with tree-sitter | 1679 | @section Developing major modes with tree-sitter |
| 1680 | @cindex major mode, developing with tree-sitter | 1680 | @cindex major mode, developing with tree-sitter |
| 1681 | 1681 | ||