From: Eshel Yaron Date: Wed, 14 Sep 2022 18:35:44 +0000 (+0300) Subject: FIXED: indentation after with inline comments X-Git-Tag: v0.2.1~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0f1119fb75adae53e552bb0c20d3067ecb909d40;p=sweep.git FIXED: indentation after with inline comments --- diff --git a/sweep.el b/sweep.el index 7d0bfd0..faaac58 100644 --- a/sweep.el +++ b/sweep.el @@ -1219,12 +1219,14 @@ Interactively, a prefix arg means to prompt for BUFFER." (defun sweep-indent-line-ends-with-comment-or-string-p () (save-excursion (end-of-line) - (nth 8 (syntax-ppss)))) + (when-let ((beg (nth 8 (syntax-ppss)))) + (<= beg (line-beginning-position))))) (defun sweep-indent-line-ends-with-fullstop-p () (save-excursion (end-of-line) - (= ?. (preceding-char)))) + (unless (nth 8 (syntax-ppss)) + (= ?. (preceding-char))))) (defun sweep-syntax-propertize (start end) (goto-char start)