summaryrefslogtreecommitdiff
path: root/examples/extexi
diff options
context:
space:
mode:
Diffstat (limited to 'examples/extexi')
-rw-r--r--examples/extexi6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/extexi b/examples/extexi
index 0ac5c8ae..efce4e57 100644
--- a/examples/extexi
+++ b/examples/extexi
@@ -52,11 +52,11 @@ BEGIN {
}
}
-/^@example$/, /^@end example$/ {
+/^@(small)?example$/, /^@end (small)?example$/ {
if (!file)
next;
- if ($0 ~ /^@example$/)
+ if ($0 ~ /^@(small)?example$/)
{
input = files_output[file] ? "\n" : "";
@@ -69,7 +69,7 @@ BEGIN {
next;
}
- if ($0 ~ /^@end example$/)
+ if ($0 ~ /^@end (small)?example$/)
{
if (input == "")
fatal("no contents: " file);