~ubuntu-branches/ubuntu/dapper/xscreensaver/dapper

« back to all changes in this revision

Viewing changes to hacks/julia.c

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2005-10-11 21:00:42 UTC
  • mfrom: (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20051011210042-u7q6zslgevdxspr3
Tags: 4.21-4ubuntu17
updated pt_BR again, fixed to UTF-8 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- Mode: C; tab-width: 4 -*-
2
2
 * julia --- continuously varying Julia set.
3
3
 */
4
 
#if !defined( lint ) && !defined( SABER )
 
4
#if 0
5
5
static const char sccsid[] = "@(#)julia.c       4.03 97/04/10 xlockmore";
6
6
#endif
7
7
 
58
58
 
59
59
static XrmOptionDescRec opts[] =
60
60
{
61
 
        {"-mouse", ".julia.mouse", XrmoptionNoArg, (caddr_t) "on"},
62
 
        {"+mouse", ".julia.mouse", XrmoptionNoArg, (caddr_t) "off"},
 
61
        {"-mouse", ".julia.mouse", XrmoptionNoArg, "on"},
 
62
        {"+mouse", ".julia.mouse", XrmoptionNoArg, "off"},
63
63
};
64
64
static argtype vars[] =
65
65
{
66
 
        {(caddr_t *) & track_p, "mouse", "Mouse", DEF_MOUSE, t_Bool},
 
66
        {&track_p, "mouse", "Mouse", DEF_MOUSE, t_Bool},
67
67
};
68
68
static OptionStruct desc[] =
69
69
{