pspp-commits
[Top][All Lists]
Advanced

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

[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-1848-gd53d


From: Ben Pfaff
Subject: [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-1848-gd53d252
Date: Sun, 12 Dec 2010 15:08:06 +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  d53d2523fad833f485e0f32e64e094fb5919b703 (commit)
       via  332f2de0d9130b4746a30f473cbbdef481956fac (commit)
       via  136f39b107e427c984fa0d74dc11d1b4bc04e898 (commit)
       via  cf376bc7dcdbdd886ddb35870c8636d14a955b39 (commit)
       via  5c7645201d967630b80850e5f422b575de00f415 (commit)
       via  42fd7baca5533f9ea373a004667736efba251bee (commit)
       via  86024ba02971a81ba8d645d859b58f94a17a0deb (commit)
       via  e7e2a9e79da2f6c9ae534c5ad067acf49d84a75b (commit)
       via  848c950e47bf9912c91edf9aae9b3b6be21a2c01 (commit)
       via  99f4295b50bc02b7024deeb59324a3332b560fbd (commit)
       via  4fc76abeb861faaa36c854dfc86e76d00d8089f4 (commit)
       via  893b8a35bb77755ef700a4646cd62e77b30c0b1f (commit)
       via  4f382354b6bdc90dd9fe8e1a80e285fb831b6771 (commit)
       via  2a02ce128ba2c77fd003e81195730de4f82d3baa (commit)
       via  3c5fcaa67efcee56981c16b543fb9f679787a486 (commit)
       via  44a9abb173e2b0f33b011a853ae1603fda0ce29b (commit)
       via  f2547763390e5fdb35a9d1a3c0bdb1e07060f901 (commit)
       via  036ae30df61b1c998e1aa027863ac2349a67066b (commit)
      from  0c5217288cb57d0994d4c99997f5341e2c3a6871 (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 d53d2523fad833f485e0f32e64e094fb5919b703
Author: Ben Pfaff <address@hidden>
Date:   Thu Dec 9 21:41:49 2010 -0800

    value-parser: Remove redundant call to lex_force_string() in parse_value().

commit 332f2de0d9130b4746a30f473cbbdef481956fac
Author: Ben Pfaff <address@hidden>
Date:   Sat Dec 11 20:56:15 2010 -0800

    GET DATA: Fix punctuation in error message.

commit 136f39b107e427c984fa0d74dc11d1b4bc04e898
Author: Ben Pfaff <address@hidden>
Date:   Thu Dec 9 21:55:58 2010 -0800

    AGGREGATE: Align arg_func_tab[] in columns.
    
    This makes the code more readable.  It should not change PSPP behavior.

commit cf376bc7dcdbdd886ddb35870c8636d14a955b39
Author: Ben Pfaff <address@hidden>
Date:   Mon Dec 6 20:54:15 2010 -0800

    i18n: Remove unnecessary #ifs.
    
    The test for LC_MESSAGES should not be necessary because Gnulib ensures
    that LC_MESSAGES is always defined.
    
    The test for ENABLE_NLS should not be necessary because PSPP has not
    supported that configuration for some time.

commit 5c7645201d967630b80850e5f422b575de00f415
Author: Ben Pfaff <address@hidden>
Date:   Mon Dec 6 20:48:32 2010 -0800

    ECHO: Use text_item, as intended.
    
    TEXT_ITEM_ECHO is meant for use by ECHO but it had been overlooked
    accidentally until now.

commit 42fd7baca5533f9ea373a004667736efba251bee
Author: Ben Pfaff <address@hidden>
Date:   Mon Dec 6 20:47:44 2010 -0800

    float-format: Don't translate test strings.
    
    These aren't visible to users in normal operation, so we might as well not
    burden translators with them.

commit 86024ba02971a81ba8d645d859b58f94a17a0deb
Author: Ben Pfaff <address@hidden>
Date:   Mon Dec 6 20:46:35 2010 -0800

    DO REPEAT: Make this command usable anywhere.
    
    DO REPEAT just does macro expansion so there's no reason to limit it to
    just after an active dataset has been defined.

commit e7e2a9e79da2f6c9ae534c5ad067acf49d84a75b
Author: Ben Pfaff <address@hidden>
Date:   Mon Dec 6 20:43:27 2010 -0800

    identifier: New function token_type_to_string().
    
    This is useful for debugging and testing code.

commit 848c950e47bf9912c91edf9aae9b3b6be21a2c01
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 5 22:21:14 2010 -0800

    NPAR TESTS: Prefer lex_match_id() over lex_match_hyphenated_word()
    
    This code used lex_match_hyphenated_word() in many places where it was
    necessary to match a plain identifier.  But it is better to use
    lex_match_id() when it can be, because it is simpler and faster, so this
    commit does that.

commit 99f4295b50bc02b7024deeb59324a3332b560fbd
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 5 22:19:34 2010 -0800

    q2c: Prefer lex_match_id() over lex_match_hyphenated_word() in emitted code.
    
    Until now, q2c has used lex_match_hyphenated_word() wherever it was
    necessary to match a plain identifier.  But it is better to use
    lex_match_id() when it can be, because it is simpler and faster, so this
    commit does that.

commit 4fc76abeb861faaa36c854dfc86e76d00d8089f4
Author: Ben Pfaff <address@hidden>
Date:   Sat Dec 11 22:17:01 2010 -0800

    DEBUG XFORM FAIL: Issue an error message as part of transformation.
    
    PSPP only returns a failure exit status if an error message is issued, but
    DEBUG XFORM FAIL doesn't issue an error message.  This means that, if PSPP
    has no other errors, then it's difficult to tell that the transformation
    really did what it should have.  This commit fixes the potential problem.

commit 893b8a35bb77755ef700a4646cd62e77b30c0b1f
Author: Ben Pfaff <address@hidden>
Date:   Sun Dec 5 15:16:03 2010 -0800

    INPUT PROGRAM: Remove unused enumeration.

commit 4f382354b6bdc90dd9fe8e1a80e285fb831b6771
Author: Ben Pfaff <address@hidden>
Date:   Sat Dec 11 22:07:56 2010 -0800

    expressions: Make extract_min_valid() parameter const.
    
    This fixes the following warning:
    
    parse.c: In function ‘parse_function’:
    parse.c:1213: warning: passing argument 1 of ‘extract_min_valid’ 
discards qualifiers from pointer target type

commit 2a02ce128ba2c77fd003e81195730de4f82d3baa
Author: Ben Pfaff <address@hidden>
Date:   Sat Dec 11 22:07:14 2010 -0800

    categoricals: Make parameter to categoricals_done() const.
    
    From a high-level point of view, categoricals_done() does not actually
    mutate any data in a categoricals object.  Instead, it just computes a
    cache.  So it seems reasonable to make it take a "const" parameter, and
    this fixes a warning:
    
    oneway.c: In function ‘run_oneway’:
    oneway.c:502: warning: initialization discards qualifiers from pointer 
target type

commit 3c5fcaa67efcee56981c16b543fb9f679787a486
Author: Ben Pfaff <address@hidden>
Date:   Sat Dec 11 21:29:55 2010 -0800

    covariance: Fix const-ness of covariance_calculate[_unnormalized] retval.
    
    The covariance_calculate() and covariance_calculate_unnormalized()
    functions documented that their return values were owned by the covariance
    object itself and thus should not be freed by the caller.  However, this
    documentation was incorrect, because in fact the covariance object did not
    retain the pointer at all.  This commit fixes the comments, updates
    the return values to be non-"const", and changes the callers to free the
    returned "gsl_matrix" objects.

commit 44a9abb173e2b0f33b011a853ae1603fda0ce29b
Author: Ben Pfaff <address@hidden>
Date:   Sat Dec 11 21:13:03 2010 -0800

    ONEWAY: Fix warning for passing "const" pointer as non-const parameter.

commit f2547763390e5fdb35a9d1a3c0bdb1e07060f901
Author: Ben Pfaff <address@hidden>
Date:   Sat Dec 11 21:09:45 2010 -0800

    mann-whitney: Suppress GCC warning about unused parameter.

commit 036ae30df61b1c998e1aa027863ac2349a67066b
Author: Ben Pfaff <address@hidden>
Date:   Sat Dec 11 21:09:17 2010 -0800

    friedman: Fix GCC warning about uninitialized fr.w.
    
    On my machine GCC 4.4 complains:
    friedman.c: In function ‘friedman_execute’:
    friedman.c:106: warning: ‘fr.w’ may be used uninitialized in this 
function
    
    This appears to be because GCC can't see that the assignment to fr.w and
    its later use (in show_sig_box()) both have the same condition.  At any
    rate, this commit suppresses the warning by always initializing fr.w.

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

Summary of changes:
 src/data/identifier.c             |   16 +++++++
 src/data/identifier.h             |   79 ++++++++++++++++++++-----------------
 src/language/command.def          |    4 +-
 src/language/data-io/get-data.c   |    2 +-
 src/language/data-io/inpt-pgm.c   |    9 ----
 src/language/expressions/parse.c  |    2 +-
 src/language/lexer/q2c.c          |    4 +-
 src/language/lexer/value-parser.c |    7 +---
 src/language/stats/aggregate.c    |   41 ++++++++++---------
 src/language/stats/correlations.c |    3 +-
 src/language/stats/factor.c       |    4 +-
 src/language/stats/friedman.c     |    2 +
 src/language/stats/glm.c          |    2 +
 src/language/stats/mann-whitney.c |    2 +-
 src/language/stats/npar.c         |   34 ++++++++--------
 src/language/stats/oneway.c       |   14 ++++---
 src/language/stats/regression.q   |    2 +-
 src/language/tests/float-format.c |    7 +--
 src/language/utilities/echo.c     |   22 ++++------
 src/language/xforms/fail.c        |   15 +++----
 src/libpspp/i18n.c                |    4 --
 src/math/categoricals.c           |    5 +-
 src/math/categoricals.h           |    4 +-
 src/math/covariance.c             |   34 ++++++++--------
 src/math/covariance.h             |    6 +-
 tests/language/stats/rank.at      |    2 +
 26 files changed, 170 insertions(+), 156 deletions(-)


hooks/post-receive
-- 
GNU PSPP



reply via email to

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