aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--entry/entry.c2
-rw-r--r--popup/popup.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/entry/entry.c b/entry/entry.c
index bbc70a7..7dc1e5a 100644
--- a/entry/entry.c
+++ b/entry/entry.c
@@ -431,7 +431,7 @@ void entry_setup(void) {
class_setsavefn(entry_class,&entry_save);
#endif
- post("Text v0.1 Ben Bogart.");
+ post("Text v0.1 Ben Bogart.\nCVS: $Revision: 1.3 $ $Date: 2004-11-07 17:53:35 $");
}
diff --git a/popup/popup.c b/popup/popup.c
index 7488653..c082751 100644
--- a/popup/popup.c
+++ b/popup/popup.c
@@ -432,9 +432,9 @@ static void *popup_new(t_symbol *s, int argc, t_atom *argv)
x->x_height = 25;
- if (argc < 4)
+ if (argc < 5)
{
- post("popup: You must enter at least 4 arguments. Default values used.");
+ post("popup: You must enter at least 5 arguments. Default values used.\n\nArguments:\npopup [width] [height] [colour] [name] [option-1] [option-2] ...");
x->x_width = 124;
x->x_height = 25;
x->x_num_options = 1;
@@ -506,7 +506,7 @@ void popup_setup(void) {
class_setsavefn(popup_class,&popup_save);
#endif
- post("Popup v0.1 Ben Bogart.");
+ post("Popup v0.1 Ben Bogart.\nCVS: $Revision: 1.8 $ $Date: 2004-11-07 17:53:46 $");
}