Changeset 1aee7d9


Ignore:
Timestamp:
Jun 28, 2002, 2:18:34 AM (22 years ago)
Author:
Erik Nygren <nygren@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
61d27fb
Parents:
7d4fbcd
Message:
* Added RCS Id strings to all files.
* 'show keymaps' shows details of all keymaps after summary list.
Files:
40 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r7d4fbcd r1aee7d9  
     1
     2$Id$
     3
     41.2.1-pre
     5        Added RCS Id strings to all files.
     6        'show keymaps' shows details of all keymaps after summary list.
     7       
    181.2.0-pre-erikdevel-17
    29        Integrated change to fix problem with popup blinking on new zephyrs.
  • Makefile.in

    r7d4fbcd r1aee7d9  
     1
     2# $Id$
     3
    14CC=@CC@
    25LIBS=@LIBS@
  • NEWS

    r7d4fbcd r1aee7d9  
     1
     2$Id$
     3
    14What's new in owl version 1.1
    25-----------------------------
  • cmd.c

    r7d4fbcd r1aee7d9  
    44#include <unistd.h>
    55#include "owl.h"
     6
     7static const char fileIdent[] = "$Id$";
    68
    79extern owl_cmd commands_to_init[];
  • codelist.pl

    r7d4fbcd r1aee7d9  
     1
     2# $Id$
     3
    14if ($#ARGV eq -1) {
    25    @ARGV=`ls *.c`;
  • commands.c

    r7d4fbcd r1aee7d9  
    44#include <unistd.h>
    55#include "owl.h"
     6
     7static const char fileIdent[] = "$Id$";
    68
    79/* fn is "char *foo(int argc, char **argv, char *buff)" */
  • configure.in

    r7d4fbcd r1aee7d9  
     1dnl $Id$
    12dnl Process this file with autoconf to produce a configure script.
    23AC_INIT(owl.c)
  • context.c

    r7d4fbcd r1aee7d9  
     1#include <string.h>
    12#include "owl.h"
    2 #include <string.h>
     3
     4static const char fileIdent[] = "$Id$";
    35
    46#define SET_ACTIVE(ctx, new) ctx->mode = ((ctx->mode)&~OWL_CTX_ACTIVE_BITS)|new
  • dict.c

    r7d4fbcd r1aee7d9  
    66 */
    77
    8 #include "owl.h"
    98#include <stdlib.h>
    109#include <string.h>
    1110#include <unistd.h>
     11#include "owl.h"
     12
     13static const char fileIdent[] = "$Id$";
     14
    1215
    1316#define INITSIZE 30
  • editwin.c

    r7d4fbcd r1aee7d9  
    33#include <unistd.h>
    44#include <string.h>
     5
     6static const char fileIdent[] = "$Id$";
    57
    68#define INCR 5000
  • filter.c

    r7d4fbcd r1aee7d9  
    11#include <string.h>
    22#include "owl.h"
     3
     4static const char fileIdent[] = "$Id$";
    35
    46int owl_filter_init_fromstring(owl_filter *f, char *name, char *string) {
  • filterelement.c

    r7d4fbcd r1aee7d9  
    11#include "owl.h"
     2
     3static const char fileIdent[] = "$Id$";
    24
    35#define OWL_FILTERELEMENT_NULL        0
  • fmtext.c

    r7d4fbcd r1aee7d9  
    22#include <stdlib.h>
    33#include <string.h>
     4
     5static const char fileIdent[] = "$Id$";
    46
    57void owl_fmtext_init_null(owl_fmtext *f) {
  • functions.c

    r7d4fbcd r1aee7d9  
    77#include <time.h>
    88#include "owl.h"
     9
     10static const char fileIdent[] = "$Id$";
    911
    1012void owl_function_noop(void) {
     
    19631965  owl_list l;
    19641966  owl_fmtext fm;
    1965 
     1967  owl_keymap *km;
     1968  owl_keyhandler *kh;
     1969  int i, numkm;
     1970  char *kmname;
     1971
     1972  kh = owl_global_get_keyhandler(&g);
    19661973  owl_fmtext_init_null(&fm);
    19671974  owl_fmtext_append_bold(&fm, "Keymaps:   ");
    19681975  owl_fmtext_append_normal(&fm, "(use 'show keymap <name>' for details)\n");
    1969   owl_keyhandler_get_keymap_names(owl_global_get_keyhandler(&g), &l);
     1976  owl_keyhandler_get_keymap_names(kh, &l);
    19701977  owl_fmtext_append_list(&fm, &l, "\n", owl_function_keymap_summary);
    19711978  owl_fmtext_append_normal(&fm, "\n");
     1979
     1980  numkm = owl_list_get_size(&l);
     1981  for (i=0; i<numkm; i++) {
     1982    kmname = owl_list_get_element(&l, i);
     1983    km = owl_keyhandler_get_keymap(kh, kmname);
     1984    owl_fmtext_append_bold(&fm, "\n\n----------------------------------------------------------------------------------------------------\n\n");
     1985    owl_keymap_get_details(km, &fm);   
     1986  }
     1987  owl_fmtext_append_normal(&fm, "\n");
     1988 
    19721989  owl_function_popless_fmtext(&fm);
    19731990  owl_keyhandler_keymap_namelist_free(&l);
  • global.c

    r7d4fbcd r1aee7d9  
    88#include <time.h>
    99#include "owl.h"
     10
     11static const char fileIdent[] = "$Id$";
    1012
    1113#ifndef MAXHOSTNAMELEN
  • help.c

    r7d4fbcd r1aee7d9  
    11#include "owl.h"
    22#include <string.h>
     3
     4static const char fileIdent[] = "$Id$";
    35
    46void owl_help() {
  • history.c

    r7d4fbcd r1aee7d9  
    11#include "owl.h"
     2
     3static const char fileIdent[] = "$Id$";
    24
    35void owl_history_init(owl_history *h) {
  • keybinding.c

    r7d4fbcd r1aee7d9  
    33#include "owl.h"
    44
     5static const char fileIdent[] = "$Id$";
    56
    67/*
  • keymap.c

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

    r7d4fbcd r1aee7d9  
    22#include <string.h>
    33#include "owl.h"
     4
     5static const char fileIdent[] = "$Id$";
    46
    57static struct _owl_keypress_specialmap {
  • keys.c

    r7d4fbcd r1aee7d9  
    11#include "owl.h"
    22
     3static const char fileIdent[] = "$Id$";
    34
    45#define BIND_CMD(kpress, command, desc) \
  • list.c

    r7d4fbcd r1aee7d9  
    11#include "owl.h"
    22#include <stdlib.h>
     3
     4static const char fileIdent[] = "$Id$";
    35
    46#define INITSIZE 30
  • logging.c

    r7d4fbcd r1aee7d9  
    44#include <ctype.h>
    55#include <sys/param.h>
     6
     7static const char fileIdent[] = "$Id$";
    68
    79void owl_log_outgoing(char *to, char *text) {
  • mainwin.c

    r7d4fbcd r1aee7d9  
    11#include "owl.h"
     2
     3static const char fileIdent[] = "$Id$";
    24
    35void owl_mainwin_init(owl_mainwin *mw) {
  • message.c

    r7d4fbcd r1aee7d9  
    1010#include <time.h>
    1111#include "owl.h"
     12
     13static const char fileIdent[] = "$Id$";
    1214
    1315void owl_message_create_admin(owl_message *m, char *header, char *text) {
  • messagelist.c

    r7d4fbcd r1aee7d9  
    22#include <stdlib.h>
    33#include <string.h>
     4
     5static const char fileIdent[] = "$Id$";
    46
    57int owl_messagelist_create(owl_messagelist *ml) {
  • owl.c

    r7d4fbcd r1aee7d9  
    2121#include <sys/param.h>
    2222#include "owl.h"
     23
     24static const char fileIdent[] = "$Id$";
    2325
    2426int main(int argc, char **argv, char **env) {
  • owl.h

    r7d4fbcd r1aee7d9  
    99#include <regex.h>
    1010#include "config.h"
     11
     12static const char owl_h_fileIdent[] = "$Id$";
    1113
    1214#define OWL_VERSION         1.2.1-pre-1
  • popwin.c

    r7d4fbcd r1aee7d9  
    11#include "owl.h"
     2
     3static const char fileIdent[] = "$Id$";
    24
    35int owl_popwin_init(owl_popwin *pw) {
  • readconfig.c

    r7d4fbcd r1aee7d9  
    77#include "owl.h"
    88#include <perl.h>
     9
     10static const char fileIdent[] = "$Id$";
    911
    1012int owl_readconfig(char *file) {
  • regex.c

    r7d4fbcd r1aee7d9  
    11#include <string.h>
    22#include "owl.h"
     3
     4static const char fileIdent[] = "$Id$";
    35
    46void owl_regex_init(owl_regex *re) {
  • stubgen.pl

    r7d4fbcd r1aee7d9  
     1
     2# $Id$
     3
    14if ($#ARGV eq -1) {
    25    @ARGV=`ls *.c`;
  • tester.c

    r7d4fbcd r1aee7d9  
    22#include <unistd.h>
    33#include <stdlib.h>
     4
     5static const char fileIdent[] = "$Id$";
    46
    57void screeninit() {
  • text.c

    r7d4fbcd r1aee7d9  
    33#include <stdlib.h>
    44#include "owl.h"
     5
     6static const char fileIdent[] = "$Id$";
    57
    68int owl_text_truncate_lines(char *out, char *in, int aline, int lines) {
  • util.c

    r7d4fbcd r1aee7d9  
    44#include <malloc.h>
    55#include <ctype.h>
     6
     7static const char fileIdent[] = "$Id$";
    68
    79void sepbar(char *in) {
  • variable.c

    r7d4fbcd r1aee7d9  
    55#include <ctype.h>
    66#include "owl.h"
     7
     8static const char fileIdent[] = "$Id$";
    79
    810#define OWLVAR_BOOL(name,default,docstring) \
  • view.c

    r7d4fbcd r1aee7d9  
    11#include "owl.h"
     2
     3static const char fileIdent[] = "$Id$";
    24
    35void owl_view_create(owl_view *v, owl_filter *f) {
  • viewwin.c

    r7d4fbcd r1aee7d9  
    11#include <string.h>
    22#include "owl.h"
     3
     4static const char fileIdent[] = "$Id$";
    35
    46#define BOTTOM_OFFSET 1
  • zephyr.c

    r7d4fbcd r1aee7d9  
    88#include <pwd.h>
    99#include "owl.h"
     10
     11static const char fileIdent[] = "$Id$";
    1012
    1113int owl_zephyr_loadsubs(char *filename) {
  • zwrite.c

    r7d4fbcd r1aee7d9  
    11#include <string.h>
    22#include "owl.h"
     3
     4static const char fileIdent[] = "$Id$";
    35
    46int owl_zwrite_create_from_line(owl_zwrite *z, char *line) {
Note: See TracChangeset for help on using the changeset viewer.