Changeset d43edd2


Ignore:
Timestamp:
Jul 22, 2009, 12:50:25 AM (15 years ago)
Author:
Anders Kaseorg <andersk@mit.edu>
Branches:
master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
0bf6757
Parents:
1ad4a4a
Message:
Death to RCS keywords.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
Files:
42 edited

Legend:

Unmodified
Added
Removed
  • buddy.c

    rf4d0975 rd43edd2  
    11#include "owl.h"
    2 
    3 static const char fileIdent[] = "$Id$";
    42
    53void owl_buddy_create(owl_buddy *b, int proto, char *name)
  • buddylist.c

    rb7bb454 rd43edd2  
    11#include "owl.h"
    2 
    3 static const char fileIdent[] = "$Id$";
    42
    53void owl_buddylist_init(owl_buddylist *bl)
  • cmd.c

    rb39a9cd rd43edd2  
    44#include <unistd.h>
    55#include "owl.h"
    6 
    7 static const char fileIdent[] = "$Id$";
    86
    97extern owl_cmd commands_to_init[];
  • commands.c

    r3e328b8 rd43edd2  
    44#include <unistd.h>
    55#include "owl.h"
    6 
    7 static const char fileIdent[] = "$Id$";
    86
    97/* fn is "char *foo(int argc, char **argv, char *buff)" */
  • context.c

    rcf83b7a rd43edd2  
    11#include <string.h>
    22#include "owl.h"
    3 
    4 static const char fileIdent[] = "$Id$";
    53
    64#define SET_ACTIVE(ctx, new) ctx->mode = ((ctx->mode)&~OWL_CTX_ACTIVE_BITS)|new
  • dict.c

    raf1920fd rd43edd2  
    1010#include <unistd.h>
    1111#include "owl.h"
    12 
    13 static const char fileIdent[] = "$Id$";
    1412
    1513
  • editwin.c

    rdc7884d rd43edd2  
    44#include <string.h>
    55#include <ctype.h>
    6 
    7 static const char fileIdent[] = "$Id$";
    86
    97#define VALID_EXCURSION (0x9a2b4729)
  • filter.c

    re6a4dd5 rd43edd2  
    11#include <string.h>
    22#include "owl.h"
    3 
    4 static const char fileIdent[] = "$Id$";
    53
    64int owl_filter_init_fromstring(owl_filter *f, char *name, char *string)
  • filterelement.c

    re6a4dd5 rd43edd2  
    11#include "owl.h"
    2 
    3 static const char fileIdent[] = "$Id$";
    42
    53static char * owl_filterelement_get_field(owl_message *m, char * field)
  • fmtext.c

    r1490327 rd43edd2  
    22#include <stdlib.h>
    33#include <string.h>
    4 
    5 static const char fileIdent[] = "$Id$";
    64
    75/* initialize an fmtext with no data */
  • functions.c

    re6d989f rd43edd2  
    1212#include <signal.h>
    1313#include "owl.h"
    14 
    15 static const char fileIdent[] = "$Id$";
    1614
    1715char *owl_function_command(char *cmdbuff)
  • global.c

    reb6cedc rd43edd2  
    88#include <time.h>
    99#include "owl.h"
    10 
    11 static const char fileIdent[] = "$Id$";
    1210
    1311#ifndef MAXHOSTNAMELEN
  • help.c

    re6d989f rd43edd2  
    11#include "owl.h"
    22#include <string.h>
    3 
    4 static const char fileIdent[] = "$Id$";
    53
    64void owl_help()
  • history.c

    r52f3507 rd43edd2  
    11#include "owl.h"
    2 
    3 static const char fileIdent[] = "$Id$";
    42
    53void owl_history_init(owl_history *h)
  • keybinding.c

    re1b136bf rd43edd2  
    22#include <string.h>
    33#include "owl.h"
    4 
    5 static const char fileIdent[] = "$Id$";
    64
    75/*
  • keymap.c

    re1b136bf rd43edd2  
    11#include <string.h>
    22#include "owl.h"
    3 
    4 static const char fileIdent[] = "$Id$";
    53
    64/* returns 0 on success */
  • keypress.c

    r428834d rd43edd2  
    22#include <string.h>
    33#include "owl.h"
    4 
    5 static const char fileIdent[] = "$Id$";
    64
    75static struct _owl_keypress_specialmap {
  • keys.c

    r435d6b2 rd43edd2  
    11#include "owl.h"
    2 
    3 static const char fileIdent[] = "$Id$";
    42
    53#define BIND_CMD(kpress, command, desc) \
  • list.c

    rf34dd65 rd43edd2  
    11#include "owl.h"
    22#include <stdlib.h>
    3 
    4 static const char fileIdent[] = "$Id$";
    53
    64#define INITSIZE 10
  • logging.c

    rd8671a1 rd43edd2  
    44#include <ctype.h>
    55#include <sys/param.h>
    6 
    7 static const char fileIdent[] = "$Id$";
    86
    97/* This is now the one function that should be called to log a
  • mainwin.c

    rc2c5c77 rd43edd2  
    11#include "owl.h"
    2 
    3 static const char fileIdent[] = "$Id$";
    42
    53void owl_mainwin_init(owl_mainwin *mw)
  • message.c

    r7f6a8a2 rd43edd2  
    1111#include "owl.h"
    1212
    13 static const char fileIdent[] = "$Id$";
    14 
    1513static owl_fmtext_cache fmtext_cache[OWL_FMTEXT_CACHE_SIZE];
    1614static owl_fmtext_cache * fmtext_cache_next = fmtext_cache;
  • messagelist.c

    r0c8ab5e rd43edd2  
    22#include <stdlib.h>
    33#include <string.h>
    4 
    5 static const char fileIdent[] = "$Id$";
    64
    75int owl_messagelist_create(owl_messagelist *ml)
  • owl.c

    reb6cedc rd43edd2  
    3333
    3434#define STDIN 0
    35 
    36 static const char fileIdent[] = "$Id$";
    3735
    3836owl_global g;
  • owl.h

    r130633c rd43edd2  
    4545typedef void SV;
    4646#endif
    47 
    48 static const char owl_h_fileIdent[] = "$Id$";
    4947
    5048#define OWL_VERSION_STRING PACKAGE_VERSION
  • perlconfig.c

    r8966889 rd43edd2  
    77#define OWL_PERL
    88#include "owl.h"
    9 
    10 static const char fileIdent[] = "$Id$";
    119
    1210extern XS(boot_BarnOwl);
  • perlglue.xs

    r7f6a8a2 rd43edd2  
    11/* -*- mode: c; indent-tabs-mode: t; c-basic-offset: 8 -*- */
    2 static const char fileIdent[] = "$Id$";
    3 
    42#ifdef HAVE_LIBZEPHYR
    53#include <zephyr/zephyr.h>
  • popexec.c

    r40c6657 rd43edd2  
    77#endif
    88#include <sys/wait.h>
    9 
    10 static const char fileIdent[] = "$Id$";
    119
    1210/* starts up popexec in a new viewwin */
  • popwin.c

    rf34dd65 rd43edd2  
    11#include "owl.h"
    2 
    3 static const char fileIdent[] = "$Id$";
    42
    53int owl_popwin_init(owl_popwin *pw)
  • regex.c

    r554a2b8 rd43edd2  
    11#include <string.h>
    22#include "owl.h"
    3 
    4 static const char fileIdent[] = "$Id$";
    53
    64void owl_regex_init(owl_regex *re)
  • select.c

    r5a35c708 rd43edd2  
    11#include "owl.h"
    2 
    3 static const char fileIdent[] = "$Id: select.c 894 2008-01-17 07:13:44Z asedeno $";
    42
    53static int dispatch_active = 0;
  • style.c

    re574a00 rd43edd2  
    11#define OWL_PERL
    22#include "owl.h"
    3 
    4 static const char fileIdent[] = "$Id$";
    53
    64void owl_style_create_perl(owl_style *s, char *name, SV *obj)
  • tester.c

    r3e8ff1e rd43edd2  
    22#include <unistd.h>
    33#include <stdlib.h>
    4 
    5 static const char fileIdent[] = "$Id$";
    64
    75owl_global g;
  • text.c

    r3e8ff1e rd43edd2  
    44#include <ctype.h>
    55#include "owl.h"
    6 
    7 static const char fileIdent[] = "$Id$";
    86
    97void owl_text_indent(char *out, char *in, int n)
  • util.c

    r7f6a8a2 rd43edd2  
    55#include <ctype.h>
    66#include <pwd.h>
    7 
    8 static const char fileIdent[] = "$Id$";
    97
    108void sepbar(char *in)
  • variable.c

    r81a96af rd43edd2  
    55#include <ctype.h>
    66#include "owl.h"
    7 
    8 static const char fileIdent[] = "$Id$";
    97
    108static int in_regtest = 0;
  • view.c

    r801b7ac rd43edd2  
    11#include <stdlib.h>
    22#include "owl.h"
    3 
    4 static const char fileIdent[] = "$Id$";
    53
    64void owl_view_create(owl_view *v, char *name, owl_filter *f, owl_style *s)
  • viewwin.c

    r47519e1b rd43edd2  
    11#include <string.h>
    22#include "owl.h"
    3 
    4 static const char fileIdent[] = "$Id$";
    53
    64#define BOTTOM_OFFSET 1
  • zbuddylist.c

    rdad943e rd43edd2  
    11#include "owl.h"
    2 
    3 static const char fileIdent[] = "$Id";
    42
    53void owl_zbuddylist_create(owl_zbuddylist *zb)
  • zcrypt.c

    rf34dd65 rd43edd2  
    88 *   the ~/.crypt-table will be checked for "crypt-classname" and then       *
    99 *   "crypt-default" for the keyfile name.                                   */
    10 
    11 static const char fileIdent[] = "$Id$";
    1210
    1311#include <stdio.h>
  • zephyr.c

    r7f6a8a2 rd43edd2  
    66#include <string.h>
    77#include "owl.h"
    8 
    9 static const char fileIdent[] = "$Id$";
    108
    119static GList *deferred_subs = NULL;
  • zwrite.c

    ra52d13a rd43edd2  
    44#include <unistd.h>
    55#include "owl.h"
    6 
    7 static const char fileIdent[] = "$Id$";
    86
    97int owl_zwrite_create_from_line(owl_zwrite *z, char *line)
Note: See TracChangeset for help on using the changeset viewer.