summaryrefslogtreecommitdiff
path: root/module/scripts/snarf-check-and-output-texi.scm
diff options
context:
space:
mode:
authorMike Gran <spk121@yahoo.com>2019-02-09 09:54:55 -0800
committerAndy Wingo <wingo@pobox.com>2019-05-23 17:16:30 +0200
commit8f254172ad73f719538ff7c6e1f4d757ad44c8a9 (patch)
tree9d4eed9777b09b5051ba8ffbd235527299afd8dd /module/scripts/snarf-check-and-output-texi.scm
parent9a7e66ecebffb54f739fa5b28f4ec65ac48c0783 (diff)
downloadguile-8f254172ad73f719538ff7c6e1f4d757ad44c8a9.tar.gz
Remove redefinition of when & unless in snarf-check-and-output-texi
* module/scripts/snarf-check-and-output-texi.scm (when, unless): removed
Diffstat (limited to 'module/scripts/snarf-check-and-output-texi.scm')
-rw-r--r--module/scripts/snarf-check-and-output-texi.scm10
1 files changed, 1 insertions, 9 deletions
diff --git a/module/scripts/snarf-check-and-output-texi.scm b/module/scripts/snarf-check-and-output-texi.scm
index 82d71f4a9..edd416fc2 100644
--- a/module/scripts/snarf-check-and-output-texi.scm
+++ b/module/scripts/snarf-check-and-output-texi.scm
@@ -1,6 +1,6 @@
;;; snarf-check-and-output-texi --- called by the doc snarfer.
-;; Copyright (C) 2001, 2002, 2006, 2011, 2014 Free Software Foundation, Inc.
+;; Copyright (C) 2001, 2002, 2006, 2011, 2014, 2019 Free Software Foundation, Inc.
;;
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU Lesser General Public License
@@ -29,14 +29,6 @@
(define %include-in-guild-list #f)
(define %summary "Transform snarfed .doc files into texinfo documentation.")
-;;; why aren't these in some module?
-
-(define-macro (when cond . body)
- `(if ,cond (begin ,@body)))
-
-(define-macro (unless cond . body)
- `(if (not ,cond) (begin ,@body)))
-
(define *manual-flag* #f)
(define (snarf-check-and-output-texi . flags)