branch: elpa/nasm-mode
commit 6e208d54eabe3339f22cd775f7e6237757f5eb36
Author: Christopher Wellons <[email protected]>
Commit: Christopher Wellons <[email protected]>
Indent single-commented lines differently.
---
nasm-mode.el | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/nasm-mode.el b/nasm-mode.el
index d39e583..8e42710 100644
--- a/nasm-mode.el
+++ b/nasm-mode.el
@@ -538,8 +538,7 @@
(if (or (looking-at (nasm--opt nasm-directives))
(looking-at (nasm--opt nasm-pp-directives))
(looking-at "\\[")
- (looking-at ";+\\s-+")
- (looking-at ";+$")
+ (looking-at ";;+")
(looking-at nasm-label-regexp))
(indent-line-to 0)
(indent-line-to nasm-basic-offset))