Changes in / [de3b1d3:8258ea5]


Ignore:
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • filter.c

    rc068c03 r30781f6  
    124124
    125125  op1 = owl_filter_parse_primitive_expression(argc-i, argv+i, &skip);
     126  i += skip;
    126127  if(!op1) goto err;
    127   i += skip;
    128128
    129129  while(i < argc) {
  • perl/lib/BarnOwl.pm

    r374089a rb303ba2  
    9393command line, and C<MESSAGE> is the zephyr body to send.
    9494
    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 
    10395=head2 ztext_stylestrip STRING
    10496
  • perlglue.xs

    r374089a rb303ba2  
    9696                RETVAL
    9797
     98void
     99zephyr_zwrite(cmd,msg)
     100        const char *cmd
     101        const char *msg
     102        PREINIT:
     103                int i;
     104        CODE:
     105                i = owl_zwrite_create_and_send_from_line(cmd, msg);
     106
    98107const utf8 *
    99108ztext_stylestrip(ztext)
     
    466475        }
    467476
    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 
    477477MODULE = BarnOwl                PACKAGE = BarnOwl::Editwin
    478478
  • zcrypt.c

    rd72ba1e r048b1ff  
    866866
    867867  err = call_filter(argv, in, &out, &status);
    868   free(in);
    869868  if(err || status) {
    870869    g_free(out);
Note: See TracChangeset for help on using the changeset viewer.