]> git.eshelyaron.com Git - sweep.git/commitdiff
FIXED: indentation error when typing at end of buffer v0.3.2
authorEshel Yaron <me@eshelyaron.com>
Fri, 23 Sep 2022 16:10:49 +0000 (19:10 +0300)
committerEshel Yaron <me@eshelyaron.com>
Fri, 23 Sep 2022 16:18:07 +0000 (19:18 +0300)
sweep.el

index 9291e97b75f012737347e8bb0204c752cea2ef54..9aa586882ab2f248c0b134a739458f20319cffae 100644 (file)
--- a/sweep.el
+++ b/sweep.el
@@ -6,7 +6,7 @@
 ;; Maintainer: Eshel Yaron <me(at)eshelyaron(dot)com>
 ;; Keywords: prolog languages extensions
 ;; URL: https://git.sr.ht/~eshel/sweep
-;; Package-Version: 0.3.1
+;; Package-Version: 0.3.2
 ;; Package-Requires: ((emacs "28"))
 
 ;; This file is NOT part of GNU Emacs.
@@ -1356,7 +1356,8 @@ Interactively, a prefix arg means to prompt for BUFFER."
     (back-to-indentation)
     (let ((indent (if (nth 8 (syntax-ppss))
                       'noindent
-                    (if-let ((open (and (= (char-syntax (char-after)) ?\))
+                    (if-let ((open (and (not (eobp))
+                                        (= (char-syntax (char-after)) ?\))
                                         (nth 1 (syntax-ppss)))))
                         (save-excursion
                           (goto-char open)