mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
fix syntax error in describe.scm
* module/system/repl/describe.scm (format-documentation): Remove bad string syntax. This file doesn't compile though, due to define-macro being a procedure->syntax macro.
This commit is contained in:
parent
9246a48606
commit
5163e95138
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@
|
|||
(define (format-documentation doc)
|
||||
(with-current-buffer (make-buffer #:text doc)
|
||||
(lambda ()
|
||||
(let ((regexp (make-regexp "@([a-z]*)(\\{([^\}]*)\\})?")))
|
||||
(let ((regexp (make-regexp "@([a-z]*)(\\{([^}]*)\\})?")))
|
||||
(do-while (match (re-search-forward regexp))
|
||||
(let ((key (string->symbol (match:substring match 1)))
|
||||
(value (match:substring match 3)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue