diff options
author | Kjell Wooding <kjell@cvs.openbsd.org> | 2005-06-14 18:14:41 +0000 |
---|---|---|
committer | Kjell Wooding <kjell@cvs.openbsd.org> | 2005-06-14 18:14:41 +0000 |
commit | 5c6323a6be90ba538b3104c2ac6f9a112cd21ce4 (patch) | |
tree | a7929c0fae57a80fb9aaa88f949bd8ef47a104d0 /usr.bin/mg | |
parent | 908b11b8beac8e3000f94c90553d5208dba66ed2 (diff) |
Add explicit public domain notices to all public domain files.
ok millert@, deraadt@
Diffstat (limited to 'usr.bin/mg')
37 files changed, 115 insertions, 39 deletions
diff --git a/usr.bin/mg/basic.c b/usr.bin/mg/basic.c index 378ffe7240e..31706dad4af 100644 --- a/usr.bin/mg/basic.c +++ b/usr.bin/mg/basic.c @@ -1,4 +1,6 @@ -/* $OpenBSD: basic.c,v 1.18 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: basic.c,v 1.19 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain */ /* * Basic cursor motion commands. diff --git a/usr.bin/mg/buffer.c b/usr.bin/mg/buffer.c index 6791b98035d..1cfad3cf97a 100644 --- a/usr.bin/mg/buffer.c +++ b/usr.bin/mg/buffer.c @@ -1,4 +1,6 @@ -/* $OpenBSD: buffer.c,v 1.42 2005/06/03 15:18:05 cloder Exp $ */ +/* $OpenBSD: buffer.c,v 1.43 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Buffer handling. diff --git a/usr.bin/mg/chrdef.h b/usr.bin/mg/chrdef.h index 1b0ec6da4ab..ed94098d5ad 100644 --- a/usr.bin/mg/chrdef.h +++ b/usr.bin/mg/chrdef.h @@ -1,4 +1,6 @@ -/* $OpenBSD: chrdef.h,v 1.6 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: chrdef.h,v 1.7 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * sys/default/chardef.h: character set specific #defines for Mg 2a diff --git a/usr.bin/mg/cinfo.c b/usr.bin/mg/cinfo.c index d14fa4eef42..18c2a21bdf9 100644 --- a/usr.bin/mg/cinfo.c +++ b/usr.bin/mg/cinfo.c @@ -1,4 +1,6 @@ -/* $OpenBSD: cinfo.c,v 1.11 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: cinfo.c,v 1.12 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Character class tables. diff --git a/usr.bin/mg/def.h b/usr.bin/mg/def.h index 483e4c6403e..a6bd33ef798 100644 --- a/usr.bin/mg/def.h +++ b/usr.bin/mg/def.h @@ -1,4 +1,6 @@ -/* $OpenBSD: def.h,v 1.63 2005/05/31 20:38:59 kjell Exp $ */ +/* $OpenBSD: def.h,v 1.64 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ #include <sys/queue.h> diff --git a/usr.bin/mg/dir.c b/usr.bin/mg/dir.c index 715c8acca95..f0db5ff53ec 100644 --- a/usr.bin/mg/dir.c +++ b/usr.bin/mg/dir.c @@ -1,4 +1,6 @@ -/* $OpenBSD: dir.c,v 1.12 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: dir.c,v 1.13 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Name: MG 2a diff --git a/usr.bin/mg/dired.c b/usr.bin/mg/dired.c index 7f7e1194b56..6289e166a30 100644 --- a/usr.bin/mg/dired.c +++ b/usr.bin/mg/dired.c @@ -1,7 +1,10 @@ -/* $OpenBSD: dired.c,v 1.19 2005/05/28 01:53:37 cloder Exp $ */ +/* $OpenBSD: dired.c,v 1.20 2005/06/14 18:14:40 kjell Exp $ */ -/* dired module for mg 2a */ -/* by Robert A. Larson */ +/* This file is in the public domain. */ + +/* dired module for mg 2a + * by Robert A. Larson + */ #include "def.h" #include "kbd.h" diff --git a/usr.bin/mg/display.c b/usr.bin/mg/display.c index 6430cb7d812..df381b66aac 100644 --- a/usr.bin/mg/display.c +++ b/usr.bin/mg/display.c @@ -1,4 +1,6 @@ -/* $OpenBSD: display.c,v 1.21 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: display.c,v 1.22 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * The functions in this file handle redisplay. The diff --git a/usr.bin/mg/echo.c b/usr.bin/mg/echo.c index 3f855bf215a..1dab9a0df0e 100644 --- a/usr.bin/mg/echo.c +++ b/usr.bin/mg/echo.c @@ -1,4 +1,7 @@ -/* $OpenBSD: echo.c,v 1.34 2005/05/31 20:38:59 kjell Exp $ */ +/* $OpenBSD: echo.c,v 1.35 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ + /* * Echo line reading and writing. * diff --git a/usr.bin/mg/extend.c b/usr.bin/mg/extend.c index 5280fc423c0..13f849ba3b3 100644 --- a/usr.bin/mg/extend.c +++ b/usr.bin/mg/extend.c @@ -1,4 +1,6 @@ -/* $OpenBSD: extend.c,v 1.33 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: extend.c,v 1.34 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Extended (M-X) commands, rebinding, and startup file processing. diff --git a/usr.bin/mg/file.c b/usr.bin/mg/file.c index bac8b53cb30..7a9ee8407bc 100644 --- a/usr.bin/mg/file.c +++ b/usr.bin/mg/file.c @@ -1,4 +1,6 @@ -/* $OpenBSD: file.c,v 1.36 2005/06/03 08:23:12 kjell Exp $ */ +/* $OpenBSD: file.c,v 1.37 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * File commands. diff --git a/usr.bin/mg/fileio.c b/usr.bin/mg/fileio.c index 5d6a101fbdd..ad70091c80b 100644 --- a/usr.bin/mg/fileio.c +++ b/usr.bin/mg/fileio.c @@ -1,4 +1,6 @@ -/* $OpenBSD: fileio.c,v 1.49 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: fileio.c,v 1.50 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * POSIX fileio.c diff --git a/usr.bin/mg/help.c b/usr.bin/mg/help.c index 1e1d0764897..bfafa34c286 100644 --- a/usr.bin/mg/help.c +++ b/usr.bin/mg/help.c @@ -1,4 +1,6 @@ -/* $OpenBSD: help.c,v 1.23 2005/04/28 07:23:56 otto Exp $ */ +/* $OpenBSD: help.c,v 1.24 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Help functions for Mg 2 diff --git a/usr.bin/mg/kbd.c b/usr.bin/mg/kbd.c index 4d82bbf8853..59b1adcba65 100644 --- a/usr.bin/mg/kbd.c +++ b/usr.bin/mg/kbd.c @@ -1,4 +1,6 @@ -/* $OpenBSD: kbd.c,v 1.16 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: kbd.c,v 1.17 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Terminal independent keyboard handling. diff --git a/usr.bin/mg/kbd.h b/usr.bin/mg/kbd.h index 75f6671513c..6b7f3845140 100644 --- a/usr.bin/mg/kbd.h +++ b/usr.bin/mg/kbd.h @@ -1,4 +1,6 @@ -/* $OpenBSD: kbd.h,v 1.15 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: kbd.h,v 1.16 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * kbd.h: type definitions for symbol.c and kbd.c for mg experimental diff --git a/usr.bin/mg/key.h b/usr.bin/mg/key.h index bd79463ffb0..3b2a7cf65c6 100644 --- a/usr.bin/mg/key.h +++ b/usr.bin/mg/key.h @@ -1,4 +1,6 @@ -/* $OpenBSD: key.h,v 1.4 2004/02/01 22:26:41 vincent Exp $ */ +/* $OpenBSD: key.h,v 1.5 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* key.h: Insert file for mg 2 functions that need to reference key pressed */ diff --git a/usr.bin/mg/keymap.c b/usr.bin/mg/keymap.c index 0235effe9e9..7c03b65c2c3 100644 --- a/usr.bin/mg/keymap.c +++ b/usr.bin/mg/keymap.c @@ -1,4 +1,6 @@ -/* $OpenBSD: keymap.c,v 1.29 2005/05/30 13:13:50 jason Exp $ */ +/* $OpenBSD: keymap.c,v 1.30 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Keyboard maps. This is character set dependent. The terminal specific diff --git a/usr.bin/mg/line.c b/usr.bin/mg/line.c index d82e580780e..30c1d379a27 100644 --- a/usr.bin/mg/line.c +++ b/usr.bin/mg/line.c @@ -1,4 +1,6 @@ -/* $OpenBSD: line.c,v 1.22 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: line.c,v 1.23 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Text line handling. diff --git a/usr.bin/mg/macro.c b/usr.bin/mg/macro.c index 46d38475aeb..4d55b51039a 100644 --- a/usr.bin/mg/macro.c +++ b/usr.bin/mg/macro.c @@ -1,4 +1,6 @@ -/* $OpenBSD: macro.c,v 1.8 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: macro.c,v 1.9 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Keyboard macros. diff --git a/usr.bin/mg/macro.h b/usr.bin/mg/macro.h index 7624be8728f..5c1f431805e 100644 --- a/usr.bin/mg/macro.h +++ b/usr.bin/mg/macro.h @@ -1,4 +1,6 @@ -/* $OpenBSD: macro.h,v 1.5 2004/02/01 22:26:41 vincent Exp $ */ +/* $OpenBSD: macro.h,v 1.6 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* definitions for keyboard macros */ diff --git a/usr.bin/mg/main.c b/usr.bin/mg/main.c index e2e4014519e..ae6a4abc48c 100644 --- a/usr.bin/mg/main.c +++ b/usr.bin/mg/main.c @@ -1,4 +1,6 @@ -/* $OpenBSD: main.c,v 1.39 2005/04/21 19:16:21 beck Exp $ */ +/* $OpenBSD: main.c,v 1.40 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Mainline. diff --git a/usr.bin/mg/match.c b/usr.bin/mg/match.c index 35797ae562a..a166da66a4c 100644 --- a/usr.bin/mg/match.c +++ b/usr.bin/mg/match.c @@ -1,4 +1,6 @@ -/* $OpenBSD: match.c,v 1.10 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: match.c,v 1.11 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Limited parenthesis matching routines diff --git a/usr.bin/mg/modes.c b/usr.bin/mg/modes.c index 731b9f706e9..9ccdcd24d43 100644 --- a/usr.bin/mg/modes.c +++ b/usr.bin/mg/modes.c @@ -1,4 +1,6 @@ -/* $OpenBSD: modes.c,v 1.10 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: modes.c,v 1.11 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Commands to toggle modes. Without an argument, these functions will diff --git a/usr.bin/mg/paragraph.c b/usr.bin/mg/paragraph.c index bf281c7ce30..064e455ef7d 100644 --- a/usr.bin/mg/paragraph.c +++ b/usr.bin/mg/paragraph.c @@ -1,4 +1,6 @@ -/* $OpenBSD: paragraph.c,v 1.10 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: paragraph.c,v 1.11 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Code for dealing with paragraphs and filling. Adapted from MicroEMACS 3.6 diff --git a/usr.bin/mg/random.c b/usr.bin/mg/random.c index 24c8f8deb3b..bc117ed0096 100644 --- a/usr.bin/mg/random.c +++ b/usr.bin/mg/random.c @@ -1,4 +1,6 @@ -/* $OpenBSD: random.c,v 1.11 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: random.c,v 1.12 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Assorted commands. diff --git a/usr.bin/mg/re_search.c b/usr.bin/mg/re_search.c index c516f33c328..1a0fe8b8f8e 100644 --- a/usr.bin/mg/re_search.c +++ b/usr.bin/mg/re_search.c @@ -1,4 +1,6 @@ -/* $OpenBSD: re_search.c,v 1.16 2005/06/14 00:55:45 kjell Exp $ */ +/* $OpenBSD: re_search.c,v 1.17 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * regular expression search commands for Mg diff --git a/usr.bin/mg/region.c b/usr.bin/mg/region.c index dd9c31fe687..aa3f285ebdc 100644 --- a/usr.bin/mg/region.c +++ b/usr.bin/mg/region.c @@ -1,4 +1,6 @@ -/* $OpenBSD: region.c,v 1.16 2005/06/05 05:15:56 kjell Exp $ */ +/* $OpenBSD: region.c,v 1.17 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Region based commands. diff --git a/usr.bin/mg/search.c b/usr.bin/mg/search.c index 182107795d4..709a0a5262a 100644 --- a/usr.bin/mg/search.c +++ b/usr.bin/mg/search.c @@ -1,4 +1,6 @@ -/* $OpenBSD: search.c,v 1.20 2005/06/14 00:55:45 kjell Exp $ */ +/* $OpenBSD: search.c,v 1.21 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Search commands. diff --git a/usr.bin/mg/spawn.c b/usr.bin/mg/spawn.c index a187f35fe2d..f52e0ed564d 100644 --- a/usr.bin/mg/spawn.c +++ b/usr.bin/mg/spawn.c @@ -1,4 +1,6 @@ -/* $OpenBSD: spawn.c,v 1.9 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: spawn.c,v 1.10 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Spawn. Actually just suspends Mg. diff --git a/usr.bin/mg/sysdef.h b/usr.bin/mg/sysdef.h index 4e97a7b429f..af4d7048af6 100644 --- a/usr.bin/mg/sysdef.h +++ b/usr.bin/mg/sysdef.h @@ -1,4 +1,6 @@ -/* $OpenBSD: sysdef.h,v 1.12 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: sysdef.h,v 1.13 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * POSIX system header file diff --git a/usr.bin/mg/tty.c b/usr.bin/mg/tty.c index 22eb5aa040f..9cf6de903d6 100644 --- a/usr.bin/mg/tty.c +++ b/usr.bin/mg/tty.c @@ -1,4 +1,6 @@ -/* $OpenBSD: tty.c,v 1.21 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: tty.c,v 1.22 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Terminfo display driver diff --git a/usr.bin/mg/ttydef.h b/usr.bin/mg/ttydef.h index a907d579a67..80a340c53a5 100644 --- a/usr.bin/mg/ttydef.h +++ b/usr.bin/mg/ttydef.h @@ -1,4 +1,6 @@ -/* $OpenBSD: ttydef.h,v 1.8 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: ttydef.h,v 1.9 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ #ifndef TTYDEF_H #define TTYDEF_H diff --git a/usr.bin/mg/ttyio.c b/usr.bin/mg/ttyio.c index 782ac22bda4..894eef00db7 100644 --- a/usr.bin/mg/ttyio.c +++ b/usr.bin/mg/ttyio.c @@ -1,4 +1,6 @@ -/* $OpenBSD: ttyio.c,v 1.27 2005/04/13 02:33:08 deraadt Exp $ */ +/* $OpenBSD: ttyio.c,v 1.28 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * POSIX terminal I/O. diff --git a/usr.bin/mg/ttykbd.c b/usr.bin/mg/ttykbd.c index 08f0212bf16..5e47989380e 100644 --- a/usr.bin/mg/ttykbd.c +++ b/usr.bin/mg/ttykbd.c @@ -1,4 +1,6 @@ -/* $OpenBSD: ttykbd.c,v 1.13 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: ttykbd.c,v 1.14 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Name: MG 2a diff --git a/usr.bin/mg/version.c b/usr.bin/mg/version.c index 25723da150f..2dc08cd21dd 100644 --- a/usr.bin/mg/version.c +++ b/usr.bin/mg/version.c @@ -1,4 +1,6 @@ -/* $OpenBSD: version.c,v 1.8 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: version.c,v 1.9 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * This file contains the string that gets written diff --git a/usr.bin/mg/window.c b/usr.bin/mg/window.c index e5ab7f06205..9331e54fe51 100644 --- a/usr.bin/mg/window.c +++ b/usr.bin/mg/window.c @@ -1,4 +1,6 @@ -/* $OpenBSD: window.c,v 1.16 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: window.c,v 1.17 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Window handling. diff --git a/usr.bin/mg/word.c b/usr.bin/mg/word.c index f60fbf13469..93913eaf692 100644 --- a/usr.bin/mg/word.c +++ b/usr.bin/mg/word.c @@ -1,4 +1,6 @@ -/* $OpenBSD: word.c,v 1.9 2005/04/03 02:09:28 db Exp $ */ +/* $OpenBSD: word.c,v 1.10 2005/06/14 18:14:40 kjell Exp $ */ + +/* This file is in the public domain. */ /* * Word mode commands. |