summaryrefslogtreecommitdiff
path: root/module/scripts/read-text-outline.scm
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2011-07-23 17:50:37 +0200
committerAndy Wingo <wingo@pobox.com>2011-07-23 17:50:41 +0200
commita1a2ed534278b968767727485f84e5957c039c23 (patch)
treebd66c43e177c2e9442cb9e20d9f7d322a6310b82 /module/scripts/read-text-outline.scm
parentd322dc92ec8170320c68abc024eb683a0bf8ab00 (diff)
downloadguile-a1a2ed534278b968767727485f84e5957c039c23.tar.gz
more work on "guild list"
* module/scripts/: Add %summary entries, and in many cases, %include-in-guild-list entries to inhibit a script from appearing in "guild list". Update list.scm to respect this new variable.
Diffstat (limited to 'module/scripts/read-text-outline.scm')
-rw-r--r--module/scripts/read-text-outline.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/module/scripts/read-text-outline.scm b/module/scripts/read-text-outline.scm
index 64221fbe1..d0933bb0b 100644
--- a/module/scripts/read-text-outline.scm
+++ b/module/scripts/read-text-outline.scm
@@ -1,6 +1,6 @@
;;; read-text-outline --- Read a text outline and display it as a sexp
-;; Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+;; Copyright (C) 2002, 2006, 2011 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
@@ -118,6 +118,9 @@
:autoload (ice-9 rdelim) (read-line)
:autoload (ice-9 getopt-long) (getopt-long))
+(define %include-in-guild-list #f)
+(define %summary "Convert textual outlines to s-expressions.")
+
(define (?? symbol)
(let ((name (symbol->string symbol)))
(string=? "?" (substring name (1- (string-length name))))))