bug-guile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#42945: Regarding a limitation of (ice-9 session)'s help procedure


From: Prafulla Giri
Subject: bug#42945: Regarding a limitation of (ice-9 session)'s help procedure
Date: Thu, 20 Aug 2020 11:33:38 +0545

It appears that the (help) procedure (from `ice-9 session` can't provide help information  for modules that are imported with a prefix.

Normal module import:
scheme@(guile-user)> (use-modules (system vm trap-state))
scheme@(guile-user)> (help add-trap-at-procedure-call! )
No documentation found for:
(system vm trap-state): add-trap-at-procedure-call!
scheme@(guile-user)> 

Prefixed module import:
scheme@(guile-user)> (use-modules ((system vm trap-state) #:prefix ts:))
scheme@(guile-user)> (help ts:add-trap-at-procedure-call! )
Did not find any object named `ts:add-trap-at-procedure-call!'
scheme@(guile-user)>

reply via email to

[Prev in Thread] Current Thread [Next in Thread]