diff options
author | Ryan Kavanagh <rak@rak.ac> | 2024-06-14 09:56:00 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2024-06-14 09:56:00 -0400 |
commit | 69954a74d7b3db458e2d95ec06997a80b86e4909 (patch) | |
tree | f2a257fc1046a1edcef63a14afef23215bd096fa | |
parent | Merge remote-tracking branch 'origin' (diff) |
fixup! f4867e876184651a09c02676d229d98e66261437
-rw-r--r-- | dot_emacs.d/lisp/beluga/beluga-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dot_emacs.d/lisp/beluga/beluga-mode.el b/dot_emacs.d/lisp/beluga/beluga-mode.el index ef33b8b..2e25d6c 100644 --- a/dot_emacs.d/lisp/beluga/beluga-mode.el +++ b/dot_emacs.d/lisp/beluga/beluga-mode.el @@ -1078,7 +1078,7 @@ Return the starting position of the short pragma; else, nil." (shell-quote-argument buffer-file-name)))) (set (make-local-variable 'comment-start) "%") (set (make-local-variable 'comment-start-skip) "%[%{]*[ \t]*") - (set (make-local-variable 'comment-end-skip) "[ \t]*\\(?:\n\\|}%\\)") + (set (make-local-variable 'comment-end-skip) "[ \t]*\\(?:\n\\|}+%\\)") (comment-normalize-vars) (set (make-local-variable 'electric-indent-chars) (append '(?|) (if (boundp 'electric-indent-chars) |