mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-29 22:40:34 +02:00
* runq.scm (runq-control): Corrected spelling of enqueue!.
(Thanks to Karl M. Hegbloom.)
This commit is contained in:
parent
a3365d4711
commit
608cf70c13
3 changed files with 7 additions and 1 deletions
1
THANKS
1
THANKS
|
@ -14,6 +14,7 @@ Bug reports and fixes from:
|
|||
Marcus Daniels
|
||||
Fred Fish
|
||||
Jesse N. Glick
|
||||
Karl M. Hegbloom
|
||||
Dirk Herrmann
|
||||
Bill Janssen
|
||||
Shiro Kawai
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
1998-04-15 Mikael Djurfeldt <mdj@nada.kth.se>
|
||||
|
||||
* runq.scm (runq-control): Corrected spelling of enqueue!.
|
||||
(Thanks to Karl M. Hegbloom.)
|
||||
|
||||
1998-03-30 Mikael Djurfeldt <mdj@nada.kth.se>
|
||||
|
||||
* boot-9.scm: Added new run-time option interface eval-options.
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
(define-public (runq-control q msg . args)
|
||||
(case msg
|
||||
((add!) (for-each (lambda (t) (enq! q t)) args) '*unspecified*)
|
||||
((enque!) (for-each (lambda (t) (enq! q t)) args) '*unspecified*)
|
||||
((enqueue!) (for-each (lambda (t) (enq! q t)) args) '*unspecified*)
|
||||
((push!) (for-each (lambda (t) (q-push! q t)) args) '*unspecified*)
|
||||
((empty?) (q-empty? q))
|
||||
((length) (q-length q))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue