Changeset 1aee7d9
- Timestamp:
- Jun 28, 2002, 2:18:34 AM (23 years ago)
- 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
- Files:
-
- 40 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r7d4fbcd r1aee7d9 1 2 $Id$ 3 4 1.2.1-pre 5 Added RCS Id strings to all files. 6 'show keymaps' shows details of all keymaps after summary list. 7 1 8 1.2.0-pre-erikdevel-17 2 9 Integrated change to fix problem with popup blinking on new zephyrs. -
Makefile.in
r7d4fbcd r1aee7d9 1 2 # $Id$ 3 1 4 CC=@CC@ 2 5 LIBS=@LIBS@ -
NEWS
r7d4fbcd r1aee7d9 1 2 $Id$ 3 1 4 What's new in owl version 1.1 2 5 ----------------------------- -
cmd.c
r7d4fbcd r1aee7d9 4 4 #include <unistd.h> 5 5 #include "owl.h" 6 7 static const char fileIdent[] = "$Id$"; 6 8 7 9 extern owl_cmd commands_to_init[]; -
codelist.pl
r7d4fbcd r1aee7d9 1 2 # $Id$ 3 1 4 if ($#ARGV eq -1) { 2 5 @ARGV=`ls *.c`; -
commands.c
r7d4fbcd r1aee7d9 4 4 #include <unistd.h> 5 5 #include "owl.h" 6 7 static const char fileIdent[] = "$Id$"; 6 8 7 9 /* fn is "char *foo(int argc, char **argv, char *buff)" */ -
configure.in
r7d4fbcd r1aee7d9 1 dnl $Id$ 1 2 dnl Process this file with autoconf to produce a configure script. 2 3 AC_INIT(owl.c) -
context.c
r7d4fbcd r1aee7d9 1 #include <string.h> 1 2 #include "owl.h" 2 #include <string.h> 3 4 static const char fileIdent[] = "$Id$"; 3 5 4 6 #define SET_ACTIVE(ctx, new) ctx->mode = ((ctx->mode)&~OWL_CTX_ACTIVE_BITS)|new -
dict.c
r7d4fbcd r1aee7d9 6 6 */ 7 7 8 #include "owl.h"9 8 #include <stdlib.h> 10 9 #include <string.h> 11 10 #include <unistd.h> 11 #include "owl.h" 12 13 static const char fileIdent[] = "$Id$"; 14 12 15 13 16 #define INITSIZE 30 -
editwin.c
r7d4fbcd r1aee7d9 3 3 #include <unistd.h> 4 4 #include <string.h> 5 6 static const char fileIdent[] = "$Id$"; 5 7 6 8 #define INCR 5000 -
filter.c
r7d4fbcd r1aee7d9 1 1 #include <string.h> 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$"; 3 5 4 6 int owl_filter_init_fromstring(owl_filter *f, char *name, char *string) { -
filterelement.c
r7d4fbcd r1aee7d9 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$"; 2 4 3 5 #define OWL_FILTERELEMENT_NULL 0 -
fmtext.c
r7d4fbcd r1aee7d9 2 2 #include <stdlib.h> 3 3 #include <string.h> 4 5 static const char fileIdent[] = "$Id$"; 4 6 5 7 void owl_fmtext_init_null(owl_fmtext *f) { -
functions.c
r7d4fbcd r1aee7d9 7 7 #include <time.h> 8 8 #include "owl.h" 9 10 static const char fileIdent[] = "$Id$"; 9 11 10 12 void owl_function_noop(void) { … … 1963 1965 owl_list l; 1964 1966 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); 1966 1973 owl_fmtext_init_null(&fm); 1967 1974 owl_fmtext_append_bold(&fm, "Keymaps: "); 1968 1975 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); 1970 1977 owl_fmtext_append_list(&fm, &l, "\n", owl_function_keymap_summary); 1971 1978 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 1972 1989 owl_function_popless_fmtext(&fm); 1973 1990 owl_keyhandler_keymap_namelist_free(&l); -
global.c
r7d4fbcd r1aee7d9 8 8 #include <time.h> 9 9 #include "owl.h" 10 11 static const char fileIdent[] = "$Id$"; 10 12 11 13 #ifndef MAXHOSTNAMELEN -
help.c
r7d4fbcd r1aee7d9 1 1 #include "owl.h" 2 2 #include <string.h> 3 4 static const char fileIdent[] = "$Id$"; 3 5 4 6 void owl_help() { -
history.c
r7d4fbcd r1aee7d9 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$"; 2 4 3 5 void owl_history_init(owl_history *h) { -
keybinding.c
r7d4fbcd r1aee7d9 3 3 #include "owl.h" 4 4 5 static const char fileIdent[] = "$Id$"; 5 6 6 7 /* -
keymap.c
r7d4fbcd r1aee7d9 1 1 #include <string.h> 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$"; 3 5 4 6 /* returns 0 on success */ -
keypress.c
r7d4fbcd r1aee7d9 2 2 #include <string.h> 3 3 #include "owl.h" 4 5 static const char fileIdent[] = "$Id$"; 4 6 5 7 static struct _owl_keypress_specialmap { -
keys.c
r7d4fbcd r1aee7d9 1 1 #include "owl.h" 2 2 3 static const char fileIdent[] = "$Id$"; 3 4 4 5 #define BIND_CMD(kpress, command, desc) \ -
list.c
r7d4fbcd r1aee7d9 1 1 #include "owl.h" 2 2 #include <stdlib.h> 3 4 static const char fileIdent[] = "$Id$"; 3 5 4 6 #define INITSIZE 30 -
logging.c
r7d4fbcd r1aee7d9 4 4 #include <ctype.h> 5 5 #include <sys/param.h> 6 7 static const char fileIdent[] = "$Id$"; 6 8 7 9 void owl_log_outgoing(char *to, char *text) { -
mainwin.c
r7d4fbcd r1aee7d9 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$"; 2 4 3 5 void owl_mainwin_init(owl_mainwin *mw) { -
message.c
r7d4fbcd r1aee7d9 10 10 #include <time.h> 11 11 #include "owl.h" 12 13 static const char fileIdent[] = "$Id$"; 12 14 13 15 void owl_message_create_admin(owl_message *m, char *header, char *text) { -
messagelist.c
r7d4fbcd r1aee7d9 2 2 #include <stdlib.h> 3 3 #include <string.h> 4 5 static const char fileIdent[] = "$Id$"; 4 6 5 7 int owl_messagelist_create(owl_messagelist *ml) { -
owl.c
r7d4fbcd r1aee7d9 21 21 #include <sys/param.h> 22 22 #include "owl.h" 23 24 static const char fileIdent[] = "$Id$"; 23 25 24 26 int main(int argc, char **argv, char **env) { -
owl.h
r7d4fbcd r1aee7d9 9 9 #include <regex.h> 10 10 #include "config.h" 11 12 static const char owl_h_fileIdent[] = "$Id$"; 11 13 12 14 #define OWL_VERSION 1.2.1-pre-1 -
popwin.c
r7d4fbcd r1aee7d9 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$"; 2 4 3 5 int owl_popwin_init(owl_popwin *pw) { -
readconfig.c
r7d4fbcd r1aee7d9 7 7 #include "owl.h" 8 8 #include <perl.h> 9 10 static const char fileIdent[] = "$Id$"; 9 11 10 12 int owl_readconfig(char *file) { -
regex.c
r7d4fbcd r1aee7d9 1 1 #include <string.h> 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$"; 3 5 4 6 void owl_regex_init(owl_regex *re) { -
stubgen.pl
r7d4fbcd r1aee7d9 1 2 # $Id$ 3 1 4 if ($#ARGV eq -1) { 2 5 @ARGV=`ls *.c`; -
tester.c
r7d4fbcd r1aee7d9 2 2 #include <unistd.h> 3 3 #include <stdlib.h> 4 5 static const char fileIdent[] = "$Id$"; 4 6 5 7 void screeninit() { -
text.c
r7d4fbcd r1aee7d9 3 3 #include <stdlib.h> 4 4 #include "owl.h" 5 6 static const char fileIdent[] = "$Id$"; 5 7 6 8 int owl_text_truncate_lines(char *out, char *in, int aline, int lines) { -
util.c
r7d4fbcd r1aee7d9 4 4 #include <malloc.h> 5 5 #include <ctype.h> 6 7 static const char fileIdent[] = "$Id$"; 6 8 7 9 void sepbar(char *in) { -
variable.c
r7d4fbcd r1aee7d9 5 5 #include <ctype.h> 6 6 #include "owl.h" 7 8 static const char fileIdent[] = "$Id$"; 7 9 8 10 #define OWLVAR_BOOL(name,default,docstring) \ -
view.c
r7d4fbcd r1aee7d9 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$"; 2 4 3 5 void owl_view_create(owl_view *v, owl_filter *f) { -
viewwin.c
r7d4fbcd r1aee7d9 1 1 #include <string.h> 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$"; 3 5 4 6 #define BOTTOM_OFFSET 1 -
zephyr.c
r7d4fbcd r1aee7d9 8 8 #include <pwd.h> 9 9 #include "owl.h" 10 11 static const char fileIdent[] = "$Id$"; 10 12 11 13 int owl_zephyr_loadsubs(char *filename) { -
zwrite.c
r7d4fbcd r1aee7d9 1 1 #include <string.h> 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$"; 3 5 4 6 int owl_zwrite_create_from_line(owl_zwrite *z, char *line) {
Note: See TracChangeset
for help on using the changeset viewer.