[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-1211-gc5ad
From: |
Ben Pfaff |
Subject: |
[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-1211-gc5ad65b |
Date: |
Sun, 02 May 2010 02:09:22 +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 PSPP".
The branch, master has been updated
via c5ad65b0351ab1d897eb072eeaec06fb37802b01 (commit)
via e2583dfdd29bc30e30ec1f0b38cb261ba6d87e37 (commit)
via 04ef14be963b955d3b33bb85149759b75a32c34e (commit)
via 6b1a7420704720085826e2b5f9fedea3ca8239de (commit)
from 4f7864559d1e334f1c3b37d02cce0b9c9830d8e7 (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 c5ad65b0351ab1d897eb072eeaec06fb37802b01
Author: Ben Pfaff <address@hidden>
Date: Sat May 1 19:09:04 2010 -0700
Implement MRSETS command.
Thanks to Tom Wilson <address@hidden> for reporting the format of
the MRSETS record in system files, and to John Darrington for examples of
additional types of records.
commit e2583dfdd29bc30e30ec1f0b38cb261ba6d87e37
Author: Ben Pfaff <address@hidden>
Date: Fri Apr 30 22:14:32 2010 -0700
dissect-sysfile: Print contents of extension records with unknown subtypes.
commit 04ef14be963b955d3b33bb85149759b75a32c34e
Author: Ben Pfaff <address@hidden>
Date: Sun Apr 25 23:11:31 2010 -0700
New stringi_set functions.
commit 6b1a7420704720085826e2b5f9fedea3ca8239de
Author: Ben Pfaff <address@hidden>
Date: Sun Apr 25 22:48:59 2010 -0700
New case-insensitive string map data structure.
-----------------------------------------------------------------------
Summary of changes:
NEWS | 8 +-
doc/dev/system-file-format.texi | 124 ++++
doc/variables.texi | 108 ++++
src/data/automake.mk | 2 +
src/data/dictionary.c | 155 +++++-
src/data/dictionary.h | 11 +-
src/data/mrset.c | 104 ++++
src/data/mrset.h | 82 +++
src/data/sys-file-reader.c | 316 +++++++++--
src/data/sys-file-writer.c | 122 +++-
src/data/value-labels.c | 7 +
src/language/command.def | 4 +-
src/language/dictionary/automake.mk | 1 +
src/language/dictionary/mrsets.c | 605 ++++++++++++++++++++
src/libpspp/automake.mk | 2 +
src/libpspp/stringi-map.c | 377 ++++++++++++
src/libpspp/stringi-map.h | 218 +++++++
src/libpspp/stringi-set.c | 53 ++-
src/libpspp/stringi-set.h | 3 +
tests/automake.mk | 14 +
tests/dissect-sysfile.c | 246 ++++++++-
tests/language/dictionary/mrsets.at | 313 ++++++++++
.../{string-map-test.c => stringi-map-test.c} | 275 ++++++----
tests/libpspp/stringi-set-test.c | 19 +-
tests/testsuite.at | 1 +
25 files changed, 2977 insertions(+), 193 deletions(-)
create mode 100644 src/data/mrset.c
create mode 100644 src/data/mrset.h
create mode 100644 src/language/dictionary/mrsets.c
create mode 100644 src/libpspp/stringi-map.c
create mode 100644 src/libpspp/stringi-map.h
create mode 100644 tests/language/dictionary/mrsets.at
copy tests/libpspp/{string-map-test.c => stringi-map-test.c} (73%)
hooks/post-receive
--
GNU PSPP
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-1211-gc5ad65b,
Ben Pfaff <=