diff options
| author | David Aspinall | 1999-11-17 13:58:44 +0000 |
|---|---|---|
| committer | David Aspinall | 1999-11-17 13:58:44 +0000 |
| commit | 6f9b41f8d8ea39a6ee962a12d9e3cbbee5adbb1d (patch) | |
| tree | d8caab9a68486298e260f8cf38207b4de511d7b2 /generic/proof-syntax.el | |
| parent | 0d0a9195acc11e980785eb38ccbef7c5c1ffd283 (diff) | |
Fix bug
Diffstat (limited to 'generic/proof-syntax.el')
| -rw-r--r-- | generic/proof-syntax.el | 2 |
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." |
