branch: elpa/nasm-mode
commit e978f6ea8a9debe7f18436daa355b84bb185c8ec
Author: Christopher Wellons <[email protected]>
Commit: Christopher Wellons <[email protected]>
Don't use 3-argument <= (requires 24.4).
Thanks, pirut!
---
nasm-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nasm-mode.el b/nasm-mode.el
index 43fece5..b84f192 100644
--- a/nasm-mode.el
+++ b/nasm-mode.el
@@ -641,7 +641,7 @@
(let ((point (point))
(start (progn (beginning-of-line) (point)))
(end (progn (back-to-indentation) (point))))
- (<= start point end))))
+ (and (<= start point) (<= point end)))))
(defun nasm-comment (&optional arg)
"Begin or edit a comment with context-sensitive placement.