summaryrefslogtreecommitdiff
path: root/guile/src/make-enum-map.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2011-11-03 23:58:19 +0100
committerLudovic Courtès <ludo@gnu.org>2011-11-03 23:58:19 +0100
commit92e8e071d322b9822167390546115e9b20b84fb9 (patch)
tree6b02066d0743af105fe5bdbaeecb2499b7021dd3 /guile/src/make-enum-map.scm
parent6fc13e2285a988b97764a8ea080961d80a603310 (diff)
downloadgnutls-92e8e071d322b9822167390546115e9b20b84fb9.tar.gz
guile: Merge the (gnutls extra) module in (gnutls); deprecate it.
Diffstat (limited to 'guile/src/make-enum-map.scm')
-rw-r--r--guile/src/make-enum-map.scm6
1 files changed, 2 insertions, 4 deletions
diff --git a/guile/src/make-enum-map.scm b/guile/src/make-enum-map.scm
index 0e4b7a7c2e..99cb9cfebd 100644
--- a/guile/src/make-enum-map.scm
+++ b/guile/src/make-enum-map.scm
@@ -1,7 +1,7 @@
;;; Help produce Guile wrappers for GnuTLS types.
;;;
;;; GnuTLS --- Guile bindings for GnuTLS.
-;;; Copyright (C) 2007, 2010 Free Software Foundation, Inc.
+;;; Copyright (C) 2007, 2010, 2011 Free Software Foundation, Inc.
;;;
;;; GnuTLS is free software; you can redistribute it and/or
;;; modify it under the terms of the GNU Lesser General Public
@@ -29,9 +29,7 @@
(define (main . args)
(let ((port (current-output-port))
- (enums (if (null? args)
- %gnutls-enums
- %gnutls-extra-enums)))
+ (enums %gnutls-enums))
(for-each (lambda (enum)
(output-enum-smob-definitions enum port))
enums)