Changeset c79a047 for commands.c
- Timestamp:
- Sep 28, 2009, 1:14:23 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- de8945b
- Parents:
- 99068d3
- git-author:
- Anders Kaseorg <andersk@mit.edu> (09/27/09 19:29:43)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (09/28/09 13:14:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
re60f98c rc79a047 995 995 }; 996 996 997 void owl_command_info( )997 void owl_command_info(void) 998 998 { 999 999 owl_function_info(); 1000 1000 } 1001 1001 1002 void owl_command_nop( )1002 void owl_command_nop(void) 1003 1003 { 1004 1004 } … … 1048 1048 } 1049 1049 1050 void owl_command_alist( )1050 void owl_command_alist(void) 1051 1051 { 1052 1052 owl_function_buddylist(1, 0, NULL); 1053 1053 } 1054 1054 1055 void owl_command_blist( )1055 void owl_command_blist(void) 1056 1056 { 1057 1057 owl_function_buddylist(1, 1, NULL); 1058 1058 } 1059 1059 1060 void owl_command_toggleoneline( )1060 void owl_command_toggleoneline(void) 1061 1061 { 1062 1062 owl_function_toggleoneline(); 1063 1063 } 1064 1064 1065 void owl_command_about( )1065 void owl_command_about(void) 1066 1066 { 1067 1067 owl_function_about(); 1068 1068 } 1069 1069 1070 void owl_command_version( )1070 void owl_command_version(void) 1071 1071 { 1072 1072 owl_function_makemsg("BarnOwl version %s", OWL_VERSION_STRING); … … 1319 1319 } 1320 1320 1321 void owl_command_expunge( )1321 void owl_command_expunge(void) 1322 1322 { 1323 1323 owl_function_expunge(); 1324 1324 } 1325 1325 1326 void owl_command_first( )1326 void owl_command_first(void) 1327 1327 { 1328 1328 owl_global_set_rightshift(&g, 0); … … 1330 1330 } 1331 1331 1332 void owl_command_last( )1332 void owl_command_last(void) 1333 1333 { 1334 1334 owl_function_lastmsg(); 1335 1335 } 1336 1336 1337 void owl_command_resize( )1337 void owl_command_resize(void) 1338 1338 { 1339 1339 owl_function_resize(); 1340 1340 } 1341 1341 1342 void owl_command_redisplay( )1342 void owl_command_redisplay(void) 1343 1343 { 1344 1344 owl_function_full_redisplay(); … … 1346 1346 } 1347 1347 1348 void owl_command_shift_right( )1348 void owl_command_shift_right(void) 1349 1349 { 1350 1350 owl_function_shift_right(); 1351 1351 } 1352 1352 1353 void owl_command_shift_left( )1353 void owl_command_shift_left(void) 1354 1354 { 1355 1355 owl_function_shift_left(); 1356 1356 } 1357 1357 1358 void owl_command_unsuball( )1358 void owl_command_unsuball(void) 1359 1359 { 1360 1360 owl_function_unsuball(); … … 1388 1388 } 1389 1389 1390 void owl_command_suspend( )1390 void owl_command_suspend(void) 1391 1391 { 1392 1392 owl_function_suspend(); … … 1672 1672 } 1673 1673 1674 void owl_command_quit( )1674 void owl_command_quit(void) 1675 1675 { 1676 1676 owl_function_quit(); … … 2311 2311 } 2312 2312 2313 void owl_command_beep( )2313 void owl_command_beep(void) 2314 2314 { 2315 2315 owl_function_beep();
Note: See TracChangeset
for help on using the changeset viewer.