summaryrefslogtreecommitdiff
path: root/rust-utils.el
diff options
context:
space:
mode:
authorSibi Prabakaran <sibi@psibi.in>2024-02-24 17:49:03 +0530
committerSibi Prabakaran <sibi@psibi.in>2024-02-24 17:49:03 +0530
commit2f58eee672ac467d333cf336a38cda859e4fcfd2 (patch)
treeddc8b1be1974ad2baa09f65ff9baafc89c6c1c88 /rust-utils.el
parentd7c382582d37a32adde0821b9afed3d0170aa926 (diff)
downloadrust-mode-2f58eee672ac467d333cf336a38cda859e4fcfd2.tar.gz
Fix warnings from rust-utils.el
Diffstat (limited to 'rust-utils.el')
-rw-r--r--rust-utils.el38
1 files changed, 19 insertions, 19 deletions
diff --git a/rust-utils.el b/rust-utils.el
index cb55172..d93bd0a 100644
--- a/rust-utils.el
+++ b/rust-utils.el
@@ -41,22 +41,22 @@ visit the new file."
if not. Move cursor to the end of macro."
(when (rust-in-str)
(up-list -1 t t))
- (setq safe-to-forward t)
- (save-excursion
- (condition-case nil
- (forward-sexp)
- (error (setq safe-to-forward nil)
- nil)))
- (cond
- ((not safe-to-forward)
- (rust-insert-dbg-alone))
- (t
- (insert "(")
- (forward-sexp)
- (insert ")")
- (backward-sexp)
- (insert "dbg!")
- (forward-sexp))))
+ (let ((safe-to-forward t))
+ (save-excursion
+ (condition-case nil
+ (forward-sexp)
+ (error (setq safe-to-forward nil)
+ nil)))
+ (cond
+ ((not safe-to-forward)
+ (rust-insert-dbg-alone))
+ (t
+ (insert "(")
+ (forward-sexp)
+ (insert ")")
+ (backward-sexp)
+ (insert "dbg!")
+ (forward-sexp)))))
(defun rust-insert-dbg-region ()
"Insert the dbg! macro around a region. Move cursor to the end of macro."
@@ -77,9 +77,9 @@ if not. Move cursor to the end of macro."
(defun rust-dbg-wrap-or-unwrap ()
"Either remove or add the dbg! macro."
(interactive)
-
+
(cond
-
+
;; region
((region-active-p)
(rust-insert-dbg-region))
@@ -106,7 +106,7 @@ if not. Move cursor to the end of macro."
(delete-pair))
(t (rust-insert-dbg-sexp)))))
)
-)
+ )
(defun rust-toggle-mutability ()
"Toggles the mutability of the variable defined on the current line"