weechat-cvs
[Top][All Lists]
Advanced

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

[Weechat-cvs] [SCM] Fast, light and extensible chat client branch, maste


From: Sebastien Helleu
Subject: [Weechat-cvs] [SCM] Fast, light and extensible chat client branch, master, updated. v0.4.1-100-g50ab62b
Date: Wed, 24 Jul 2013 06:25:57 +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 "Fast, light and extensible chat client".

The branch, master has been updated
       via  50ab62b75d50f28c90d9eea1f786d90aa20cdfe1 (commit)
       via  ea76cdb06ea045dafbe91bfde1669e2287f8e8bd (commit)
      from  c14b1b5fae241e19bfc505dcb427ca88b8d5554d (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 50ab62b75d50f28c90d9eea1f786d90aa20cdfe1
Author: Sebastien Helleu <address@hidden>
Date:   Wed Jul 24 08:15:17 2013 +0200

    core: fix priority of logical operators in evaluation of expression
    
    The AND ("&&") takes precedence over the OR ("||").
    
    Before the fix:
    >> 1 || 1 && 0
    == [0]
    
    After the fix:
    >> 1 || 1 && 0
    == [1]
    
    Since the "&&" has higher priority, expression is evaluated as:
    "1 || (1 && 0)".

commit ea76cdb06ea045dafbe91bfde1669e2287f8e8bd
Author: Sebastien Helleu <address@hidden>
Date:   Tue Jul 23 19:39:39 2013 +0200

    doc: fix typo in example for function string_eval_expression (plugin API 
reference)

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

Summary of changes:
 ChangeLog                        |    4 +++-
 doc/en/weechat_plugin_api.en.txt |    6 +++---
 doc/fr/weechat_plugin_api.fr.txt |    6 +++---
 doc/it/weechat_plugin_api.it.txt |    6 +++---
 src/core/wee-eval.c              |    2 +-
 src/core/wee-eval.h              |    4 ++--
 6 files changed, 15 insertions(+), 13 deletions(-)


hooks/post-receive
-- 
Fast, light and extensible chat client



reply via email to

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