aboutsummaryrefslogtreecommitdiff
path: root/generic
diff options
context:
space:
mode:
authorDavid Aspinall1999-11-17 13:58:44 +0000
committerDavid Aspinall1999-11-17 13:58:44 +0000
commit6f9b41f8d8ea39a6ee962a12d9e3cbbee5adbb1d (patch)
treed8caab9a68486298e260f8cf38207b4de511d7b2 /generic
parent0d0a9195acc11e980785eb38ccbef7c5c1ffd283 (diff)
Fix bug
Diffstat (limited to 'generic')
-rw-r--r--generic/proof-syntax.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/proof-syntax.el b/generic/proof-syntax.el
index c3a76f70..fd6a746f 100644
--- a/generic/proof-syntax.el
+++ b/generic/proof-syntax.el
@@ -65,7 +65,7 @@ nil if a region cannot be found."
(cond ((stringp regexp-or-fn)
(proof-string-match regexp-or-fn string))
((functionp regexp-or-fn)
- (regexp-or-fn string))))
+ (funcall regexp-or-fn string))))
(defun proof-looking-at (regexp)
"Like looking-at, but set case-fold-search to proof-case-fold-search."