mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-20 19:42:53 -08:00
Suppress "variable may be used uninitialized" warnings.
Copied from Perforce Change: 182545 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
b32d6919a7
commit
37e3e2dfac
4 changed files with 8 additions and 8 deletions
|
|
@ -1715,7 +1715,7 @@ static obj_t entry_quote(obj_t env, obj_t op_env, obj_t operator, obj_t operands
|
|||
|
||||
static obj_t entry_define(obj_t env, obj_t op_env, obj_t operator, obj_t operands)
|
||||
{
|
||||
obj_t symbol, value;
|
||||
obj_t symbol = NULL, value = NULL;
|
||||
unless(TYPE(operands) == TYPE_PAIR &&
|
||||
TYPE(CDR(operands)) == TYPE_PAIR)
|
||||
error("%s: illegal syntax", operator->operator.name);
|
||||
|
|
@ -3479,7 +3479,7 @@ static obj_t entry_eqv_hash(obj_t env, obj_t op_env, obj_t operator, obj_t opera
|
|||
|
||||
static obj_t make_hashtable(obj_t operator, obj_t rest, hash_t hashf, cmp_t cmpf, int weak_key, int weak_value)
|
||||
{
|
||||
size_t length;
|
||||
size_t length = 0;
|
||||
if (rest == obj_empty)
|
||||
length = 8;
|
||||
else unless(CDR(rest) == obj_empty)
|
||||
|
|
|
|||
|
|
@ -1445,7 +1445,7 @@ static obj_t entry_quote(obj_t env, obj_t op_env, obj_t operator, obj_t operands
|
|||
|
||||
static obj_t entry_define(obj_t env, obj_t op_env, obj_t operator, obj_t operands)
|
||||
{
|
||||
obj_t symbol, value;
|
||||
obj_t symbol = NULL, value = NULL;
|
||||
unless(TYPE(operands) == TYPE_PAIR &&
|
||||
TYPE(CDR(operands)) == TYPE_PAIR)
|
||||
error("%s: illegal syntax", operator->operator.name);
|
||||
|
|
@ -3212,7 +3212,7 @@ static obj_t entry_eqv_hash(obj_t env, obj_t op_env, obj_t operator, obj_t opera
|
|||
|
||||
static obj_t make_hashtable(obj_t operator, obj_t rest, hash_t hashf, cmp_t cmpf)
|
||||
{
|
||||
size_t length;
|
||||
size_t length = 0;
|
||||
if (rest == obj_empty)
|
||||
length = 8;
|
||||
else unless(CDR(rest) == obj_empty)
|
||||
|
|
|
|||
|
|
@ -1445,7 +1445,7 @@ static obj_t entry_quote(obj_t env, obj_t op_env, obj_t operator, obj_t operands
|
|||
|
||||
static obj_t entry_define(obj_t env, obj_t op_env, obj_t operator, obj_t operands)
|
||||
{
|
||||
obj_t symbol, value;
|
||||
obj_t symbol = NULL, value = NULL;
|
||||
unless(TYPE(operands) == TYPE_PAIR &&
|
||||
TYPE(CDR(operands)) == TYPE_PAIR)
|
||||
error("%s: illegal syntax", operator->operator.name);
|
||||
|
|
@ -3212,7 +3212,7 @@ static obj_t entry_eqv_hash(obj_t env, obj_t op_env, obj_t operator, obj_t opera
|
|||
|
||||
static obj_t make_hashtable(obj_t operator, obj_t rest, hash_t hashf, cmp_t cmpf)
|
||||
{
|
||||
size_t length;
|
||||
size_t length = 0;
|
||||
if (rest == obj_empty)
|
||||
length = 8;
|
||||
else unless(CDR(rest) == obj_empty)
|
||||
|
|
|
|||
|
|
@ -1744,7 +1744,7 @@ static obj_t entry_quote(obj_t env, obj_t op_env, obj_t operator, obj_t operands
|
|||
|
||||
static obj_t entry_define(obj_t env, obj_t op_env, obj_t operator, obj_t operands)
|
||||
{
|
||||
obj_t symbol, value;
|
||||
obj_t symbol = NULL, value = NULL;
|
||||
unless(TYPE(operands) == TYPE_PAIR &&
|
||||
TYPE(CDR(operands)) == TYPE_PAIR)
|
||||
error("%s: illegal syntax", operator->operator.name);
|
||||
|
|
@ -3508,7 +3508,7 @@ static obj_t entry_eqv_hash(obj_t env, obj_t op_env, obj_t operator, obj_t opera
|
|||
|
||||
static obj_t make_hashtable(obj_t operator, obj_t rest, hash_t hashf, cmp_t cmpf)
|
||||
{
|
||||
size_t length;
|
||||
size_t length = 0;
|
||||
if (rest == obj_empty)
|
||||
length = 8;
|
||||
else unless(CDR(rest) == obj_empty)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue