From 55aa9cac0c6d5fd457d0892e187a8403112896fc Mon Sep 17 00:00:00 2001 From: "N.N." Date: Fri, 24 Apr 2009 19:30:26 +0000 Subject: fixed recent blunder about A_LIST and A_ATOM svn path=/trunk/; revision=11121 --- desiredata/src/m_pd.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'desiredata') diff --git a/desiredata/src/m_pd.h b/desiredata/src/m_pd.h index a53ad13a..6ea90242 100644 --- a/desiredata/src/m_pd.h +++ b/desiredata/src/m_pd.h @@ -232,12 +232,13 @@ typedef enum { A_SEMI, A_COMMA, /* radioactive elements of the first kind */ A_DEFFLOAT, A_DEFSYM, /* pseudo-types for optional (DEFault) arguments */ A_DOLLAR, A_DOLLSYM, /* radioactive elements of the second kind */ - A_GIMME, /* non-type: represents varargs */ - A_CANT, /* bottom type: type constraint is impossible */ - A_LIST /* t_list *, the 4th stable element (future use) */ - /* 14 = A_GRID for GridFlow */ - /* 15 = A_GRIDOUT for GridFlow */ - /* 16 could be A_ATOM, top type: type constraint doesn't constrain */ + A_GIMME, /* non-type: represents varargs */ + A_CANT, /* bottom type: type constraint is impossible */ +/* regular pd stops here, before #12 */ + A_ATOM, /* top type: type constraint doesn't constrain */ + A_LIST, /* t_list *, the 4th stable element (future use) */ + A_GRID, /* reserved for GridFlow */ + A_GRIDOUT, /* reserved for GridFlow */ } t_atomtype; #define A_DEFSYMBOL A_DEFSYM /* better name for this */ -- cgit v1.2.1