1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-06 23:50:18 +02:00

* readline.scm: Typo in regex module name.

This commit is contained in:
Mikael Djurfeldt 1998-06-14 15:07:51 +00:00
parent edd9ac213c
commit 4ffd142c03
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
1998-06-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
* readline.scm: Typo in regex module name.
1998-06-13 Mikael Djurfeldt <mdj@barbara.nada.kth.se> 1998-06-13 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
* readline.scm (apropos-completion-function): regexp-quote text to * readline.scm (apropos-completion-function): regexp-quote text to

View file

@ -22,7 +22,7 @@
(define-module (ice-9 readline) (define-module (ice-9 readline)
:use-module (ice-9 session) :use-module (ice-9 session)
:use-module (ice-9 regexp)) :use-module (ice-9 regex))
;;; MDJ 980513 <djurfeldt@nada.kth.se>: ;;; MDJ 980513 <djurfeldt@nada.kth.se>:
;;; There should probably be low-level support instead of this code. ;;; There should probably be low-level support instead of this code.