emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/treesit-fold c70ac04ea5 358/417: Fixed linting warnings, u


From: ELPA Syncer
Subject: [nongnu] elpa/treesit-fold c70ac04ea5 358/417: Fixed linting warnings, untabified, tested locally with eask.
Date: Mon, 1 Jul 2024 10:03:04 -0400 (EDT)

branch: elpa/treesit-fold
commit c70ac04ea5ff72d8fc69bd5cb48253581b789f5c
Author: Nidish Narayanaa Balaji <nidbid@gmail.com>
Commit: Jen-Chieh Shen <jcs090218@gmail.com>

    Fixed linting warnings, untabified, tested locally with eask.
---
 ts-fold-parsers.el |  2 ++
 ts-fold.el         | 17 +++++++----------
 2 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/ts-fold-parsers.el b/ts-fold-parsers.el
index 27ad9690f9..1caddcacef 100644
--- a/ts-fold-parsers.el
+++ b/ts-fold-parsers.el
@@ -59,6 +59,8 @@
 (declare-function ts-fold-range-julia-if "ts-fold.el")
 (declare-function ts-fold-range-julia-let "ts-fold.el")
 (declare-function ts-fold-range-kotlin-when "ts-fold.el")
+(declare-function ts-fold-range-latex-environment "ts-fold.el")
+(declare-function ts-fold-range-latex-section "ts-fold.el")
 (declare-function ts-fold-range-lisp-function "ts-fold.el")
 (declare-function ts-fold-range-llvm-label "ts-fold.el")
 (declare-function ts-fold-range-llvm-mir-label "ts-fold.el")
diff --git a/ts-fold.el b/ts-fold.el
index 6b28518547..3e19cc4b8d 100644
--- a/ts-fold.el
+++ b/ts-fold.el
@@ -1160,11 +1160,9 @@ more information."
 For arguments NODE and OFFSET, see function `ts-fold-range-seq' for
 more information."
   (when-let* ((lab-node (car (ts-fold-find-children node "curly_group")))
-             (beg (tsc-node-end-position lab-node))
-             (end (tsc-node-end-position node)))
-    (ts-fold--cons-add (cons beg end) offset)
-    )
-  )
+              (beg (tsc-node-end-position lab-node))
+              (end (tsc-node-end-position node)))
+    (ts-fold--cons-add (cons beg end) offset)))
 
 (defun ts-fold-range-latex-environment (node offset)
   "Define fold range for latex environments.
@@ -1172,11 +1170,10 @@ more information."
 For arguments NODE and OFFSET, see function `ts-fold-range-seq' for
 more information."
   (when-let* ((beg-node (tsc-get-child-by-field node :begin))
-             (end-node (tsc-get-child-by-field node :end))
-             (beg (tsc-node-end-position beg-node))
-             (end (tsc-node-start-position end-node)))
-    (ts-fold--cons-add (cons beg end) offset))
-  )
+              (end-node (tsc-get-child-by-field node :end))
+              (beg (tsc-node-end-position beg-node))
+              (end (tsc-node-start-position end-node)))
+    (ts-fold--cons-add (cons beg end) offset)))
 
 (defun ts-fold-range-rst-body (node offset)
   "Define fold range for `body' in reStructuredText.



reply via email to

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