Very old versions for history.
[opsoft_archive.git] / silentbob / silent_bob-1.2 / src / sblib / bugs.cpp
blob97dbdd3bc768f3273ed5fbb48a9e7b1b8ddf427f
1 /*
2 * (c) Oleg Puchinin 2006.
3 * graycardinalster@gmail.com
5 */
7 #include "../head.h"
9 void bug_longmacro ()
11 printf ("Too big macro."
12 "If your macro have more than 300 lines, please "
13 "contact <graycardinal@pisem.net>\n"
14 "Program stopped.\n");
16 exit (0);
19 void bug_nosuch_tag (char * f_name)
21 printf ("Tag \"%s\" not found. Broken \"tags\" file ? "
22 "Try \"silent-bob --make-ctags\".\n", f_name);
25 void bug_nocalltags ()
27 printf ("File \"call_tags\" not found. "
28 "Try \"silent-bob --call-tags [-L] <files>\"\n");
29 exit (1);
32 void bug_system ()
34 printf ("Can't make tags file. Maybe you do not have write permissions ?\n");
35 exit (1);
38 void bug_fork ()
40 perror ("fork");
41 exit (1);
44 void bug_plugin (char *name)
46 printf ("Can't load plugin (%s)\n", name);
49 void bug_notsupported ()
51 printf ("SilentBob (or language plugin)"
52 " don't support this feature !\n");