Changeset de3b1d3
- Timestamp:
- Jan 12, 2013, 7:07:51 PM (12 years ago)
- Parents:
- 8258ea5 (diff), c068c03 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
filter.c
r30781f6 rc068c03 124 124 125 125 op1 = owl_filter_parse_primitive_expression(argc-i, argv+i, &skip); 126 if(!op1) goto err; 126 127 i += skip; 127 if(!op1) goto err;128 128 129 129 while(i < argc) { -
perl/lib/BarnOwl.pm
rb303ba2 r374089a 93 93 command line, and C<MESSAGE> is the zephyr body to send. 94 94 95 =cut 96 97 sub zephyr_zwrite { 98 my ($command, $message) = @_; 99 my $ret = BarnOwl::Internal::zephyr_zwrite($command, $message); 100 die "Error sending zephyr" unless $ret == 0; 101 } 102 95 103 =head2 ztext_stylestrip STRING 96 104 -
perlglue.xs
rb303ba2 r374089a 96 96 RETVAL 97 97 98 void99 zephyr_zwrite(cmd,msg)100 const char *cmd101 const char *msg102 PREINIT:103 int i;104 CODE:105 i = owl_zwrite_create_and_send_from_line(cmd, msg);106 107 98 const utf8 * 108 99 ztext_stylestrip(ztext) … … 475 466 } 476 467 468 int 469 zephyr_zwrite(cmd,msg) 470 const char *cmd 471 const char *msg 472 CODE: 473 RETVAL = owl_zwrite_create_and_send_from_line(cmd, msg); 474 OUTPUT: 475 RETVAL 476 477 477 MODULE = BarnOwl PACKAGE = BarnOwl::Editwin 478 478 -
zcrypt.c
r048b1ff rd72ba1e 866 866 867 867 err = call_filter(argv, in, &out, &status); 868 free(in); 868 869 if(err || status) { 869 870 g_free(out);
Note: See TracChangeset
for help on using the changeset viewer.