* [gentoo-commits] repo/gentoo:master commit in: dev-scheme/slib/files/
@ 2018-04-09 0:15 Aaron Bauman
0 siblings, 0 replies; only message in thread
From: Aaron Bauman @ 2018-04-09 0:15 UTC (permalink / raw
To: gentoo-commits
commit: 5548b9a7af8e7272a0eb5a7e0bcd51fda5458615
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Apr 6 10:37:08 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Apr 9 00:11:53 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5548b9a7
dev-scheme/slib: remove unused file
Closes: https://github.com/gentoo/gentoo/pull/7837
dev-scheme/slib/files/slib-3.2.2-fix-texinfo.awk | 123 -----------------------
1 file changed, 123 deletions(-)
diff --git a/dev-scheme/slib/files/slib-3.2.2-fix-texinfo.awk b/dev-scheme/slib/files/slib-3.2.2-fix-texinfo.awk
deleted file mode 100644
index 6bc3ce8e177..00000000000
--- a/dev-scheme/slib/files/slib-3.2.2-fix-texinfo.awk
+++ /dev/null
@@ -1,123 +0,0 @@
-# Fixes Texinfo input to compile with Texinfo 5 or later
-#
-# Written by Sebastian Pipping <sebastian@pipping.org>
-# Licensed under CC0 1.0 Universal Public Domain Dedication
-# https://creativecommons.org/publicdomain/zero/1.0/
-#
-# Version 0_p20150813_p0418
-
-BEGIN {
- inside_deffn = 0
- inside_defmac = 0
- inside_defop = 0
- inside_deftp = 0
- inside_defun = 0
-}
-
-/^@deffn / {
- if (inside_deffn) {
- print "@end deffn"
- }
- inside_deffn = 1
-}
-
-/^@deffnx / {
- if (inside_deffn) {
- print "@end deffn"
- }
- sub(/^@deffnx/, "@deffn")
- inside_deffn = 1
-}
-
-/^@defmac / {
- if (inside_defmac) {
- print "@end defmac"
- }
- inside_defmac = 1
-}
-
-/^@defmacx / {
- if (inside_defmac) {
- print "@end defmac"
- }
- sub(/^@defmacx/, "@defmac")
- inside_defmac = 1
-}
-
-/^@defop / {
- if (inside_defop) {
- print "@end defop"
- }
- inside_defop = 1
-}
-
-/^@defopx / {
- if (inside_defop) {
- print "@end defop"
- }
- sub(/^@defopx/, "@defop")
- inside_defop = 1
-}
-
-/^@deftp / {
- if (inside_deftp) {
- print "@end deftp"
- }
- inside_deftp = 1
-}
-
-/^@deftpx / {
- if (inside_deftp) {
- print "@end deftp"
- }
- sub(/^@deftpx/, "@deftp")
- inside_deftp = 1
-}
-
-/^@defun / {
- if (inside_defun) {
- print "@end defun"
- }
- inside_defun = 1
-}
-
-/^@defunx / {
- if (inside_defun) {
- print "@end defun"
- }
- sub(/^@defunx/, "@defun")
- inside_defun = 1
-}
-
-/^@end deffn/ {
- inside_deffn = 0
-}
-
-/^@end defmac/ {
- inside_defmac = 0
-}
-
-/^@end defop/ {
- inside_defop = 0
-}
-
-/^@end deftp/ {
- inside_deftp = 0
-}
-
-/^@end defun/ {
- inside_defun = 0
-}
-
-/^@subsubsection/ {
- if (inside_deffn) {
- print "@end deffn"
- print $0
- print "@deffn {Dummy} Dummy"
- next
- }
-}
-
-{
- print
-}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2018-04-09 0:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-09 0:15 [gentoo-commits] repo/gentoo:master commit in: dev-scheme/slib/files/ Aaron Bauman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox