aboutsummaryrefslogtreecommitdiffhomepage
path: root/isar
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2006-04-26 22:31:52 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2006-04-26 22:31:52 +0000
commit8ba99b2013e0f62c9117fc79364630ff1fbec585 (patch)
tree1ecc9083150779a527fab764508ac9dab7d78096 /isar
parentfc774de804417a399094f61de1880e75b556c851 (diff)
Changed the type of proof-goal-command-p. It takes now a span, which
allows using a span attribute to detect goal commands. I think I modified all modes accordingly.
Diffstat (limited to 'isar')
-rw-r--r--isar/isar.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/isar/isar.el b/isar/isar.el
index 41871478..9bd0ef69 100644
--- a/isar/isar.el
+++ b/isar/isar.el
@@ -479,9 +479,10 @@ proof-shell-retract-files-regexp."
-(defun isar-goal-command-p (str)
+(defun isar-goal-command-p (span)
"Decide whether argument is a goal or not"
- (proof-string-match isar-goal-command-regexp str))
+ (proof-string-match isar-goal-command-regexp
+ (or (span-property span 'cmd) "")))
(defun isar-global-save-command-p (span str)
"Decide whether argument really is a global save command"