guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, branch_release-1-8, updated. release_1


From: Noah Lavine
Subject: [Guile-commits] GNU Guile branch, branch_release-1-8, updated. release_1-8-8-7-ge254747
Date: Wed, 02 May 2012 03:30:50 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=e2547476441c9e7ecb752ec1aa7c2f55dcd2a0b8

The branch, branch_release-1-8 has been updated
       via  e2547476441c9e7ecb752ec1aa7c2f55dcd2a0b8 (commit)
       via  f5556ab3e6997b774eec81d2418d2029a47f8b81 (commit)
      from  9718acde77935837ecb947d52d15e989ebbe4877 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 libguile/async.c        |    3 +--
 libguile/c-tokenize.lex |   14 --------------
 2 files changed, 1 insertions(+), 16 deletions(-)

diff --git a/libguile/async.c b/libguile/async.c
index 104167f..5603691 100644
--- a/libguile/async.c
+++ b/libguile/async.c
@@ -240,7 +240,6 @@ scm_i_queue_async_cell (SCM c, scm_i_thread *t)
 
   if (sleep_fd >= 0)
     {
-      size_t count;
       char dummy = 0;
 
       /* Likewise, T might already been done with sleeping here, but
@@ -248,7 +247,7 @@ scm_i_queue_async_cell (SCM c, scm_i_thread *t)
         not yet have started sleeping, but this is no problem either
         since the data written to a pipe will not be lost, unlike a
         condition variable signal.  */
-      count = write (sleep_fd, &dummy, 1);
+      write (sleep_fd, &dummy, 1);
     }
 
   /* This is needed to protect sleep_mutex.
diff --git a/libguile/c-tokenize.lex b/libguile/c-tokenize.lex
index 938a5d2..6a36933 100644
--- a/libguile/c-tokenize.lex
+++ b/libguile/c-tokenize.lex
@@ -23,20 +23,6 @@ INTQUAL              (l|L|ll|LL|lL|Ll|u|U)
    code.  This function is never actually used, and GCC 4.3 will emit
    an error for that. */
 #define YY_NO_INPUT
-
-int yylex(void);
-
-int yyget_lineno (void);
-FILE *yyget_in (void);
-FILE *yyget_out (void);
-int yyget_leng (void);
-char *yyget_text (void);
-void yyset_lineno (int line_number);
-void yyset_in (FILE * in_str);
-void yyset_out (FILE * out_str);
-int yyget_debug (void);
-void yyset_debug (int  bdebug);
-int yylex_destroy (void);
  
 int filter_snarfage = 0;
 int print = 1; 


hooks/post-receive
-- 
GNU Guile



reply via email to

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