Changeset 323 for trunk/thune/console.c
- Timestamp:
- 12/26/06 22:10:34 (2 years ago)
- Files:
-
- 1 modified
-
trunk/thune/console.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/console.c
r310 r323 24 24 25 25 26 #ifdef LANG_RUNE 27 extern void rune_install( UrlanEnv* ); 28 #define APPNAME "Thune-Rune" 26 #if defined(LANG_RUNE) 27 #define APPNAME "Rune" 29 28 #define CUSTOM_DT 0 30 29 #define CUSTOM_DT_COUNT 0 … … 133 132 #endif 134 133 135 #ifdef LANG_RUNE136 rune_install( &env );137 #endif138 139 134 if( argc > 1 ) 140 135 { … … 173 168 cmd[ sizeof(cmd) - 1 ] = -1; 174 169 170 #ifdef LANG_THUNE 175 171 if( (argc - fileN) > 1 ) 176 172 { … … 191 187 pos = strCopy( pos, "none :args " ); 192 188 } 193 189 #endif 190 191 #ifdef LANG_RUNE 192 pos = strCopy( pos, "do load " ); 193 #endif 194 194 *pos++ = '"'; 195 195 pos = strCopy( pos, argv[fileN] ); 196 196 *pos++ = '"'; 197 #ifdef LANG_THUNE 197 198 pos = strCopy( pos, " load do" ); 199 #endif 198 200 199 201 assert( cmd[ sizeof(cmd) - 1 ] == -1 && "cmd buffer overflow" );
