aboutsummaryrefslogtreecommitdiff
path: root/syntax/def_NEWLINE.py
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2025-05-26 11:00:33 +0200
committerJonas Smedegaard <dr@jones.dk>2025-05-26 11:40:24 +0200
commitb39149eae9a046dea7367ea0423fb7e7a27149a2 (patch)
tree89ffea26c8c359086b59b4f81a5158641411b652 /syntax/def_NEWLINE.py
parentbd8c87a53621a3e1e421c22caf30571a90db398c (diff)
rename syntax definitions: drop prefix def_
Diffstat (limited to 'syntax/def_NEWLINE.py')
-rwxr-xr-xsyntax/def_NEWLINE.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/syntax/def_NEWLINE.py b/syntax/def_NEWLINE.py
deleted file mode 100755
index d995861..0000000
--- a/syntax/def_NEWLINE.py
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/python3
-
-# Copyright 2025, Jonas Smedegaard <dr@jones.dk>
-# SPDX-License-Identifier: GPL-3+
-
-from railroad import *
-
-Diagram(
- Choice(0,
- '\\r\\n',
- '\\n',
- '\\r',
- ),
- type="complex"
-).writeStandalone(sys.stdout.write)