* Using `provided?´ instead of `feature?´.
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>
Fri, 31 Aug 2001 09:21:03 +0000 (09:21 +0000)
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>
Fri, 31 Aug 2001 09:21:03 +0000 (09:21 +0000)
guile-readline/ChangeLog
guile-readline/readline.scm

index 0b2bdfb..e5f9b5e 100644 (file)
@@ -1,3 +1,8 @@
+2001-08-31  Dirk Herrmann  <D.Herrmann@tu-bs.de>
+
+       * readline.scm: `feature?´ is deprecated.  Use `provided?´
+       instead.
+
 2001-08-25  Marius Vollmer  <mvo@zagadka.ping.de>
 
        * readline.scm: Use load-extension instead of explicit
index 3627c27..2afb035 100644 (file)
 ;;; Dynamically link the glue code for accessing the readline library,
 ;;; but only when it isn't already present.
 
-(if (not (feature? 'readline))
+(if (not (provided? 'readline))
     (load-extension "libguilereadline" "scm_init_readline"))
 
-(if (not (feature? 'readline))
+(if (not (provided? 'readline))
     (scm-error 'misc-error
               #f
               "readline is not provided in this Guile installation"
 (define-public (set-readline-read-hook! h)
   (set! read-hook h))
 
-(if (feature? 'regex)
+(if (provided? 'regex)
     (begin
       (define-public apropos-completion-function
        (let ((completions '()))