bug#21117: [PATCH 4/4] Remove sigevent structure value definitions

2015-07-22 Thread David Michael
* libguile/Makefile.am (chknew-E chknew-SIG): Anchor the end of the signal/error name pattern to only match alphanumeric symbols. * libguile/cpp-SIG.syms (SIGEV_MAX_SIZE, SIGEV_NONE): Remove. (SIGEV_PAD_SIZE, SIGEV_SIGNAL, SIGEV_THREAD): Likewise. (SIGEV_THREAD_ID): Likewise. --- I'm assumi

bug#21116: [PATCH 3/4] Add Hurd signal and error definitions

2015-07-22 Thread David Michael
* libguile/cpp-E.syms (EAUTH, EBACKGROUND): New definitions. (EBADRPC, ED, EDIED, EFTYPE, EGRATUITOUS, EGREGIOUS): Likewise. (EIEIO, ENEEDAUTH, EPROCLIM, EPROCUNAVAIL): Likewise. (EPROGMISMATCH, EPROGUNAVAIL, ERPCMISMATCH): Likewise. * libguile/cpp-SIG.syms (SIGEMT, SIGEV_MAX_SIZE): Likewise.

bug#21115: [PATCH 2/4] Add new Linux error definitions

2015-07-22 Thread David Michael
* libguile/cpp-E.syms (EHWPOISON, ERFKILL): New definitions. --- When I tested the changes on a Linux-based system, there were some new error definitions. This adds them to the list. libguile/cpp-E.syms | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libguile/cpp-E.syms b/libguile/cpp-E

bug#21114: [PATCH 1/4] Fix the rule to check for new signals and errors

2015-07-22 Thread David Michael
* .gitignore (/libguile/*.NEW): New pattern. * libguile/Makefile.am (chknew-E chknew-SIG): Remove the line continuation after the targets, and include numbers in the recipe's signal/error regexp to catch names like E2BIG. --- This patch series makes a few updates to the generation of the list

bug#18439: [PATCH] guile-readline: Use the current directory if HOME is unset

2014-09-20 Thread David Michael
* guile-readline/ice-9/readline.scm (history-file): When the HOME environment variable is unset, use the current directory instead. --- guile-readline/ice-9/readline.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guile-readline/ice-9/readline.scm b/guile-readline/ice-

bug#18439: [PATCH] guile-readline: Use an empty string if HOME is unset

2014-09-10 Thread David Michael
* guile-readline/ice-9/readline.scm (history-file): When the HOME environment variable is unset, use the empty string in its place. --- Hi, If a Guile program uses the readline module without setting HOME, it will fail due to string-append getting a #f argument. In particular, this necessitate