guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.9-222-gc3c30


From: Mark H Weaver
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.9-222-gc3c3032
Date: Thu, 06 Mar 2014 22:50:37 +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=c3c3032608c9658c5dc5019d85446b6a1c2f7fcc

The branch, stable-2.0 has been updated
       via  c3c3032608c9658c5dc5019d85446b6a1c2f7fcc (commit)
      from  bf0d59e54de22f0a2e384b0fea2aa039769676fb (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 -----------------------------------------------------------------
commit c3c3032608c9658c5dc5019d85446b6a1c2f7fcc
Author: Mark H Weaver <address@hidden>
Date:   Thu Mar 6 17:17:11 2014 -0500

    Make snarfing tools more robust to varied C preprocessor behavior.
    
    * libguile/guile-snarf.in (modern_snarf): Rewrite sed script to cope
      with newlines in the snarfed code segments, or multiple code segments
      on the same line.
    
    * module/scripts/snarf-check-and-output-texi.scm (process-stream):
      Strip all 'hash' tokens from the stream.
      (do-command): Remove special cases that handled 'hash' tokens
      in a few places.

-----------------------------------------------------------------------

Summary of changes:
 libguile/guile-snarf.in                        |   19 +++++++++++--------
 module/scripts/snarf-check-and-output-texi.scm |   15 ++-------------
 2 files changed, 13 insertions(+), 21 deletions(-)

diff --git a/libguile/guile-snarf.in b/libguile/guile-snarf.in
index c73e8ce..47bbc04 100644
--- a/libguile/guile-snarf.in
+++ b/libguile/guile-snarf.in
@@ -1,7 +1,8 @@
 #!/bin/sh
 # Extract the initialization actions from source files.
 #
-#  Copyright (C) 1996, 97, 98, 99, 2000, 2001, 2002, 2004, 2006, 2008, 2009 
Free Software Foundation, Inc.
+#  Copyright (C) 1996, 97, 98, 99, 2000, 2001, 2002, 2004, 2006, 2008,
+#    2009, 2014 Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
@@ -51,19 +52,21 @@ modern_snarf ()                         # writes stdout
     ## empty file.
     echo "/* cpp arguments: $@ */" ;
     ${cpp} -DSCM_MAGIC_SNARF_INITS -DSCM_MAGIC_SNARFER "$@" > ${temp} && 
cpp_ok_p=true
-    sed -ne 's/ *\^ *: *\^/\
+    sed -ne 's/ *\^ *\^ */\
 /
-h
-s/\n.*//
+s/.*\n//
 t x
 d
 : x
-s/.*\^ *\^ *\(.*\)/\1;/
+s/ *\^ *: *\^ */;\
+/
 t y
-d
+N
+s/\n\(#.*\)/ /
+s/\n/ /
+t x
 : y
-p
-x
+P
 D' ${temp}
 }
 
diff --git a/module/scripts/snarf-check-and-output-texi.scm 
b/module/scripts/snarf-check-and-output-texi.scm
index 6ca07a1..82d71f4 100644
--- a/module/scripts/snarf-check-and-output-texi.scm
+++ b/module/scripts/snarf-check-and-output-texi.scm
@@ -1,6 +1,6 @@
 ;;; snarf-check-and-output-texi --- called by the doc snarfer.
 
-;;     Copyright (C) 2001, 2002, 2006, 2011 Free Software Foundation, Inc.
+;; Copyright (C) 2001, 2002, 2006, 2011, 2014 Free Software Foundation, Inc.
 ;;
 ;; This program is free software; you can redistribute it and/or
 ;; modify it under the terms of the GNU Lesser General Public License
@@ -63,7 +63,7 @@
                                                (let loop ((s s))
                                                  (cond
                                                    ((stream-null? s) #t)
-                                                   ((eq? 'eol (stream-car s))
+                                                   ((memq (stream-car s) '(eol 
hash))
                                                     (loop (stream-cdr s)))
                                                    (else (cons (stream-car s) 
(stream-cdr s))))))
                                              (port->stream port read)))))
@@ -265,17 +265,6 @@
       (set! *file* file)
       (set! *line* line))
 
-     ;; newer gccs like to throw around more location markers into the
-     ;; preprocessed source; these (hash . hash) bits are what they translate 
to
-     ;; in snarfy terms.
-     (('location ('string . file) ('int . line) ('hash . 'hash))
-      (set! *file* file)
-      (set! *line* line))
-
-     (('location ('hash . 'hash) ('string . file) ('int . line) ('hash . 
'hash))
-      (set! *file* file)
-      (set! *line* line))
-
      (('arglist rest ...)
       (set! *args* (do-arglist rest)))
 


hooks/post-receive
-- 
GNU Guile



reply via email to

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