ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/typemap
(Generate patch)

Comparing rxvt-unicode/src/typemap (file contents):
Revision 1.9 by root, Mon Jun 4 16:03:33 2012 UTC vs.
Revision 1.10 by root, Tue Jun 5 13:39:26 2012 UTC

12 12
13rxvt_term * TERM 13rxvt_term * TERM
14rxvt_img * IMG 14rxvt_img * IMG
15 15
16GError ** T_UV 16GError ** T_UV
17
18render_repeat_mode RENDER_REPEAT_MODE
17 19
18INPUT 20INPUT
19 21
20TERM 22TERM
21 $var = SvTERM ($arg); 23 $var = SvTERM ($arg);
32 if (SvROK ($arg) && sv_derived_from ($arg, \"urxvt::img\")) 34 if (SvROK ($arg) && sv_derived_from ($arg, \"urxvt::img\"))
33 $var = INT2PTR ($type, SvIV ((SV *) SvRV ($arg))); 35 $var = INT2PTR ($type, SvIV ((SV *) SvRV ($arg)));
34 else 36 else
35 croak (\"%s is not of type urxvt::img\", \"$var\") 37 croak (\"%s is not of type urxvt::img\", \"$var\")
36 38
39RENDER_REPEAT_MODE
40 if (SvOK ($arg))
41 {
42 $var = SvIV ($arg);
43 if ($var != RepeatNone && $var != RepeatNormal && $var != RepeatPad && $var != RepeatReflect)
44 croak (\"invalid repeat mode specified (%d)\\n\", $var);
45 }
46 else
47 $var = RepeatNormal;
48
37OUTPUT 49OUTPUT
38 50
39TERM 51TERM
40 $arg = newSVterm ($var); 52 $arg = newSVterm ($var);
41 53

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines