mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-09 05:30:21 +02:00
Initial revision.
This commit is contained in:
parent
b6c7676343
commit
01f6637ceb
1 changed files with 31 additions and 0 deletions
31
doc/groupings.alist
Normal file
31
doc/groupings.alist
Normal file
|
@ -0,0 +1,31 @@
|
|||
;; groupings.alist -*-scheme-*-
|
||||
;; This file describes interface element groupings.
|
||||
;; See (scripts scan-api) commentary for more info.
|
||||
|
||||
(
|
||||
|
||||
(C+scheme
|
||||
(description "in both groups `scheme' and `C'") ; should be empty!
|
||||
(grok () (lambda (x)
|
||||
(and (in-group? x 'Scheme)
|
||||
(in-group? x 'C)))))
|
||||
|
||||
(libguile-internal
|
||||
(description "begins with scm_i_")
|
||||
(grok () (lambda (x)
|
||||
(name-prefix? x "scm_i_"))))
|
||||
|
||||
(math
|
||||
(description "math functions")
|
||||
(members $abs $acos $acosh $asin $asinh $atan $atan2 $atanh $cos $cosh
|
||||
$exp $expt $log $sin $sinh $sqrt $tan $tanh))
|
||||
|
||||
(favorite
|
||||
(description "my favorite procs")
|
||||
(grok () (lambda (x)
|
||||
(and (in-group? x 'math) (in-group? x 'Scheme)))))
|
||||
|
||||
;; Add new grouping descriptions here.
|
||||
)
|
||||
|
||||
;; groupings.alist ends here
|
Loading…
Add table
Add a link
Reference in a new issue