diff options
| author | Simon Tatham <anakin@pobox.com> | 1999-07-31 18:44:53 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 1999-07-31 18:44:53 +0000 |
| commit | 0d14833a9c76c51cc7417d8fd60bec9d92714b8e (patch) | |
| tree | c0716d398e83bc746baad088d5dfc215d5fea483 /misc | |
| parent | 4c8c2b256ed01563a98b4cd820dc8ffef30d7fc1 (diff) | |
| download | halibut-0d14833a9c76c51cc7417d8fd60bec9d92714b8e.zip halibut-0d14833a9c76c51cc7417d8fd60bec9d92714b8e.tar.gz halibut-0d14833a9c76c51cc7417d8fd60bec9d92714b8e.tar.bz2 halibut-0d14833a9c76c51cc7417d8fd60bec9d92714b8e.tar.xz | |
Further development work. Parser nearly finished
[originally from svn r187]
Diffstat (limited to 'misc')
| -rw-r--r-- | misc/buttress.sl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/buttress.sl b/misc/buttress.sl index 13efc03..0d7e207 100644 --- a/misc/buttress.sl +++ b/misc/buttress.sl @@ -1,4 +1,4 @@ -% The functions here are common to both TeX and LaTeX modes. +% Buttress mode for Jed. $1 = "Buttress"; create_syntax_table ($1); @@ -24,7 +24,7 @@ define_highlight_rule (".", "normal", $1); build_highlight_table ($1); #endif -% This hook identifies lines containing TeX comments as paragraph separator +% This hook identifies lines containing comments as paragraph separator define buttress_is_comment() { bol (); while (ffind ("\\\\#")) go_right (3); |