diff options
| author | Makarius Wenzel | 2000-04-05 20:25:05 +0000 |
|---|---|---|
| committer | Makarius Wenzel | 2000-04-05 20:25:05 +0000 |
| commit | eb4e0ef62c19f07ed55eb7de6d6fc41f80e48d3f (patch) | |
| tree | d0f5319472a54e8d15e558c9be55f4f3570c006c | |
| parent | 372226842254163146d61c5c6c59beb947bec272 (diff) | |
improved print_mode switch;
| -rw-r--r-- | isa/isa.el | 4 | ||||
| -rw-r--r-- | isar/isar.el | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -637,8 +637,8 @@ you will be asked to retract the file or process the remainder of it." ;; fontification for tokens themselves (FIXME: broken) '(("\\\\<[A-Za-z][A-Za-z0-9_']*>" (0 font-lock-type-face))) proof-xsym-activate-command - "print_mode := (!print_mode union [\"xsymbols\",\"symbols\"])" + "print_mode := ([\"xsymbols\",\"symbols\"] @ ! print_mode)" proof-xsym-deactivate-command - "print_mode := filter_out (fn x=>(rev (explode \"symbols\") prefix rev (explode x))) (!print_mode)") + "print_mode := (! print_mode \\\\ [\"xsymbols\",\"symbols\"])") (provide 'isa) diff --git a/isar/isar.el b/isar/isar.el index 30a174cd..db4ed62e 100644 --- a/isar/isar.el +++ b/isar/isar.el @@ -613,9 +613,9 @@ proof-shell-retract-files-regexp." (setq proof-xsym-font-lock-keywords '(("\\\\<[A-Za-z][A-Za-z0-9_']*>" (0 font-lock-type-face))) proof-xsym-activate-command - "ML {* print_mode := (!print_mode union [\"xsymbols\",\"symbols\"]) *};" + "ML_command {* print_mode := ([\"xsymbols\",\"symbols\"] @ ! print_mode) *};" proof-xsym-deactivate-command - "ML {* print_mode := filter_out (fn x=>(rev (explode \"symbols\") prefix rev (explode x))) (!print_mode) *};") + "ML_command {* print_mode := (! print_mode \\\\ [\"xsymbols\",\"symbols\"]) *};") (provide 'isar) |
