bug#59646: [PATCH] Add short command for locals debug command.

2022-11-27 Thread Bug reports for GUILE, GNU's Ubiquitous Extension Language
---
 module/system/repl/command.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module/system/repl/command.scm b/module/system/repl/command.scm
index 0024fd165..4c4a667f3 100644
--- a/module/system/repl/command.scm
+++ b/module/system/repl/command.scm
@@ -61,7 +61,7 @@
  (disassemble x) (disassemble-file xx))
 (profile  (time t) (profile pr) (trace tr))
 (debug(backtrace bt) (up) (down) (frame fr)
-  (locals) (error-message error)
+  (locals l) (error-message error)
   (break br bp) (break-at-source break-at bs)
   (step s) (step-instruction si)
   (next n) (next-instruction ni)
-- 
2.38.1






bug#59646: [PATCH v2] Add short command for locals debug command.

2022-11-27 Thread Bug reports for GUILE, GNU's Ubiquitous Extension Language
---
 module/system/repl/command.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module/system/repl/command.scm b/module/system/repl/command.scm
index 0024fd165..d7257b5a1 100644
--- a/module/system/repl/command.scm
+++ b/module/system/repl/command.scm
@@ -61,7 +61,7 @@
  (disassemble x) (disassemble-file xx))
 (profile  (time t) (profile pr) (trace tr))
 (debug(backtrace bt) (up) (down) (frame fr)
-  (locals) (error-message error)
+  (locals lo) (error-message error)
   (break br bp) (break-at-source break-at bs)
   (step s) (step-instruction si)
   (next n) (next-instruction ni)
-- 
2.38.1






bug#59647: [PATCH] Fix typos in docstrings.

2022-11-27 Thread Bug reports for GUILE, GNU's Ubiquitous Extension Language
* libguile/boolean.c
(scm_not): Fix typo.
(scm_boolean_p): Fix typo.
---
 libguile/boolean.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libguile/boolean.c b/libguile/boolean.c
index e8370331f..930001a89 100644
--- a/libguile/boolean.c
+++ b/libguile/boolean.c
@@ -56,7 +56,7 @@ verify (SCM_BITS_DIFFER_IN_EXACTLY_TWO_BIT_POSITIONS  
\
 
 SCM_DEFINE (scm_not, "not", 1, 0, 0, 
 (SCM x),
-"Return @code{#t} iff @var{x} is false, else return @code{#f}.")
+"Return @code{#t} if @var{x} is false, else return @code{#f}.")
 #define FUNC_NAME s_scm_not
 {
   return scm_from_bool (scm_is_false (x));
@@ -82,7 +82,7 @@ SCM_DEFINE (scm_nil_p, "nil?", 1, 0, 0,
 
 SCM_DEFINE (scm_boolean_p, "boolean?", 1, 0, 0, 
(SCM obj),
-"Return @code{#t} iff @var{obj} is @code{#t} or false.")
+"Return @code{#t} if @var{obj} is @code{#t} or false.")
 #define FUNC_NAME s_scm_boolean_p
 {
   return scm_from_bool (scm_is_bool (obj));
-- 
2.38.1