[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-48-g5a0b0d
From: |
Ben Pfaff |
Subject: |
[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-48-g5a0b0d6 |
Date: |
Sun, 12 Oct 2008 03:53:55 +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 5a0b0d607efde2ab3a47d0d9c9fc62128a3156c1 (commit)
via 5165d8c7ed098d87a481f08652f3e1aa6d82c366 (commit)
via 3939ba46b53a33f99663cd5313fed19a9e992a8f (commit)
from 81dd94aa39205cf311495cb3239bd4da1503dc2f (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 5a0b0d607efde2ab3a47d0d9c9fc62128a3156c1
Author: Ben Pfaff <address@hidden>
Date: Sat Oct 11 15:35:42 2008 -0700
Implement variable and data file attributes.
commit 5165d8c7ed098d87a481f08652f3e1aa6d82c366
Author: Ben Pfaff <address@hidden>
Date: Thu Oct 9 07:37:43 2008 -0700
Make str_copy_rpad() behave properly with a DST_SIZE of 0.
commit 3939ba46b53a33f99663cd5313fed19a9e992a8f
Author: Ben Pfaff <address@hidden>
Date: Wed Oct 8 22:25:36 2008 -0700
Make [ and ] valid tokens in the lexer.
The VARIABLE ATTRIBUTE and DATAFILE ATTRIBUTE commands use [ and ]
to designate array elements. This is the first use for these tokens
in the language implemented by PSPP, so until now these characters
were rejected with an error whenever they appeared in a syntax file
outside a comment or a quoted string.
-----------------------------------------------------------------------
Summary of changes:
NEWS | 10 +-
doc/data-io.texi | 47 +++
doc/dev/system-file-format.texi | 80 +++++
doc/files.texi | 39 ++-
doc/language.texi | 5 +
doc/variables.texi | 106 +++++--
src/data/attributes.c | 298 ++++++++++++++++++
src/data/attributes.h | 70 +++++
src/data/automake.mk | 2 +
src/data/dictionary.c | 49 +++-
src/data/dictionary.h | 5 +
src/data/sys-file-reader.c | 293 +++++++++++++-----
src/data/sys-file-writer.c | 76 +++++
src/data/variable.c | 62 ++++-
src/data/variable.h | 7 +
src/language/command.def | 3 +-
src/language/dictionary/apply-dictionary.c | 7 +
src/language/dictionary/attributes.c | 200 ++++++++++++
src/language/dictionary/automake.mk | 1 +
src/language/dictionary/sys-file-info.c | 463 ++++++++++++++++------------
src/language/lexer/lexer.c | 1 +
src/libpspp/str.c | 17 +-
tests/automake.mk | 1 +
tests/command/attributes.sh | 148 +++++++++
tests/dissect-sysfile.c | 267 +++++++++++-----
25 files changed, 1852 insertions(+), 405 deletions(-)
create mode 100644 src/data/attributes.c
create mode 100644 src/data/attributes.h
create mode 100644 src/language/dictionary/attributes.c
create mode 100755 tests/command/attributes.sh
hooks/post-receive
--
GNU PSPP
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-48-g5a0b0d6,
Ben Pfaff <=