* guile/scm-param.c (pascm_make_param_smob): Add ARI comment.
(gdbscm_make_parameter): Ditto.
This commit is contained in:
parent
d03cec6e44
commit
b6210538cf
@ -1,3 +1,8 @@
|
||||
2014-06-03 Doug Evans <xdje42@gmail.com>
|
||||
|
||||
* guile/scm-param.c (pascm_make_param_smob): Add ARI comment.
|
||||
(gdbscm_make_parameter): Ditto.
|
||||
|
||||
2014-06-03 Doug Evans <dje@google.com>
|
||||
|
||||
* exec.c (exec_close_1): Call clear_section_table instead of
|
||||
|
@ -175,7 +175,7 @@ pascm_make_param_smob (void)
|
||||
|
||||
memset (p_smob, 0, sizeof (*p_smob));
|
||||
p_smob->cmd_class = no_class;
|
||||
p_smob->type = var_boolean;
|
||||
p_smob->type = var_boolean; /* ARI: var_boolean */
|
||||
p_smob->set_func = SCM_BOOL_F;
|
||||
p_smob->show_func = SCM_BOOL_F;
|
||||
p_scm = scm_new_smob (parameter_smob_tag, (scm_t_bits) p_smob);
|
||||
@ -849,7 +849,7 @@ gdbscm_make_parameter (SCM name_scm, SCM rest)
|
||||
char *s;
|
||||
char *name;
|
||||
int cmd_class = no_class;
|
||||
int param_type = var_boolean;
|
||||
int param_type = var_boolean; /* ARI: var_boolean */
|
||||
SCM enum_list_scm = SCM_BOOL_F;
|
||||
SCM set_func = SCM_BOOL_F, show_func = SCM_BOOL_F;
|
||||
char *doc = NULL, *set_doc = NULL, *show_doc = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user