pidgin/purple-plugin-pack

Removed all puncuation from the summarys (consistency is good)
org.guifications.plugins
2008-05-19, grim
4e0ab71453a8
Removed all puncuation from the summarys (consistency is good)

Cleaned up a few summaries so they would find in a 78 column term. This was driven by the debian_description command, but i've been meaning to do this for a while anyways...
/*************************************************************************
* Recursion test module
* by Martijn van Oosterhout <kleptog@svana.org> (C) April 2006
* Licenced under the GNU General Public Licence version 2.
*
* Code to test the recursion module.
*************************************************************************/
#include <stdio.h>
#include "recurse.h"
int
process_entry(char *str, void *ptr)
{
printf("%s\n", str);
return 0;
}
int
main()
{
recurse_directory("/usr/share/zoneinfo", process_entry, main);
return 0;
}