branch: externals/tex-parens
commit 5362f5a284994aad6b7e157784c760f27cfe7d2e
Author: Paul Nelson <[email protected]>
Commit: Paul Nelson <[email protected]>
fix dump bug introduced in revision
---
tex-parens.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tex-parens.el b/tex-parens.el
index 1bf371c172..9259257a3f 100644
--- a/tex-parens.el
+++ b/tex-parens.el
@@ -269,7 +269,7 @@ defun-based commands."
(setq result
(let (success done)
(while (not done)
- (if (re-search-forward regexp bound t)
+ (if (re-search-forward regexp nil t)
(when (not
(let ((new-point (point))
(m-string (match-string 0)))