summaryrefslogtreecommitdiff
path: root/usr.bin/mg
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>2001-01-29 01:58:56 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>2001-01-29 01:58:56 +0000
commit0584185e7c4788adcb1afaf1b86184ddefc5205e (patch)
treeac4de1476bc33075bf11333d1f8958fc9ac2aefe /usr.bin/mg
parent7260d3cfea4d27edbeeb8d4fcdd130f507073558 (diff)
$OpenBSD$
Diffstat (limited to 'usr.bin/mg')
-rw-r--r--usr.bin/mg/basic.c2
-rw-r--r--usr.bin/mg/buffer.c2
-rw-r--r--usr.bin/mg/chrdef.h2
-rw-r--r--usr.bin/mg/cinfo.c2
-rw-r--r--usr.bin/mg/def.h2
-rw-r--r--usr.bin/mg/dir.c2
-rw-r--r--usr.bin/mg/dired.c2
-rw-r--r--usr.bin/mg/display.c2
-rw-r--r--usr.bin/mg/echo.c2
-rw-r--r--usr.bin/mg/extend.c2
-rw-r--r--usr.bin/mg/file.c2
-rw-r--r--usr.bin/mg/fileio.c2
-rw-r--r--usr.bin/mg/help.c2
-rw-r--r--usr.bin/mg/kbd.c2
-rw-r--r--usr.bin/mg/kbd.h2
-rw-r--r--usr.bin/mg/key.h2
-rw-r--r--usr.bin/mg/keymap.c2
-rw-r--r--usr.bin/mg/line.c2
-rw-r--r--usr.bin/mg/macro.c2
-rw-r--r--usr.bin/mg/macro.h2
-rw-r--r--usr.bin/mg/main.c2
-rw-r--r--usr.bin/mg/match.c2
-rw-r--r--usr.bin/mg/mg.12
-rw-r--r--usr.bin/mg/modes.c2
-rw-r--r--usr.bin/mg/paragraph.c2
-rw-r--r--usr.bin/mg/random.c2
-rw-r--r--usr.bin/mg/re_search.c2
-rw-r--r--usr.bin/mg/region.c2
-rw-r--r--usr.bin/mg/search.c2
-rw-r--r--usr.bin/mg/spawn.c2
-rw-r--r--usr.bin/mg/sysdef.h2
-rw-r--r--usr.bin/mg/tty.c2
-rw-r--r--usr.bin/mg/ttydef.h2
-rw-r--r--usr.bin/mg/ttyio.c2
-rw-r--r--usr.bin/mg/ttykbd.c2
-rw-r--r--usr.bin/mg/version.c2
-rw-r--r--usr.bin/mg/window.c2
-rw-r--r--usr.bin/mg/word.c2
38 files changed, 76 insertions, 0 deletions
diff --git a/usr.bin/mg/basic.c b/usr.bin/mg/basic.c
index 990f395a616..b4dc605fd5c 100644
--- a/usr.bin/mg/basic.c
+++ b/usr.bin/mg/basic.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: basic.c,v 1.4 2001/01/29 01:58:06 niklas Exp $ */
+
/*
* Basic cursor motion commands.
*
diff --git a/usr.bin/mg/buffer.c b/usr.bin/mg/buffer.c
index 231ee574ed6..4c6a72283b1 100644
--- a/usr.bin/mg/buffer.c
+++ b/usr.bin/mg/buffer.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: buffer.c,v 1.5 2001/01/29 01:58:06 niklas Exp $ */
+
/*
* Buffer handling.
*/
diff --git a/usr.bin/mg/chrdef.h b/usr.bin/mg/chrdef.h
index 4b4c386f0ec..e18fce17f66 100644
--- a/usr.bin/mg/chrdef.h
+++ b/usr.bin/mg/chrdef.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: chrdef.h,v 1.3 2001/01/29 01:58:06 niklas Exp $ */
+
/*
* sys/default/chardef.h: character set specific #defines for Mg 2a
* Warning: System specific ones exist
diff --git a/usr.bin/mg/cinfo.c b/usr.bin/mg/cinfo.c
index 8b342f915bf..4f72399075c 100644
--- a/usr.bin/mg/cinfo.c
+++ b/usr.bin/mg/cinfo.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: cinfo.c,v 1.3 2001/01/29 01:58:06 niklas Exp $ */
+
/*
* Character class tables.
* Do it yourself character classification
diff --git a/usr.bin/mg/def.h b/usr.bin/mg/def.h
index 171253bdf88..2177fdb4708 100644
--- a/usr.bin/mg/def.h
+++ b/usr.bin/mg/def.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: def.h,v 1.6 2001/01/29 01:58:06 niklas Exp $ */
+
/*
* This file is the general header file for all parts
* of the Mg display editor. It contains all of the
diff --git a/usr.bin/mg/dir.c b/usr.bin/mg/dir.c
index b667c862b6e..20bfc8a96f7 100644
--- a/usr.bin/mg/dir.c
+++ b/usr.bin/mg/dir.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: dir.c,v 1.4 2001/01/29 01:58:06 niklas Exp $ */
+
/*
* Name: MG 2a
* Directory management functions
diff --git a/usr.bin/mg/dired.c b/usr.bin/mg/dired.c
index bf231c85060..7c530a8ab8a 100644
--- a/usr.bin/mg/dired.c
+++ b/usr.bin/mg/dired.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: dired.c,v 1.6 2001/01/29 01:58:06 niklas Exp $ */
+
/* dired module for mg 2a */
/* by Robert A. Larson */
diff --git a/usr.bin/mg/display.c b/usr.bin/mg/display.c
index 321d02e6c4d..3272132314f 100644
--- a/usr.bin/mg/display.c
+++ b/usr.bin/mg/display.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: display.c,v 1.4 2001/01/29 01:58:07 niklas Exp $ */
+
/*
* The functions in this file handle redisplay. The
* redisplay system knows almost nothing about the editing
diff --git a/usr.bin/mg/echo.c b/usr.bin/mg/echo.c
index 3f85bbaf3ab..c1576ab30e6 100644
--- a/usr.bin/mg/echo.c
+++ b/usr.bin/mg/echo.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: echo.c,v 1.4 2001/01/29 01:58:07 niklas Exp $ */
+
/*
* Echo line reading and writing.
*
diff --git a/usr.bin/mg/extend.c b/usr.bin/mg/extend.c
index ed7959c2237..8e5999e5667 100644
--- a/usr.bin/mg/extend.c
+++ b/usr.bin/mg/extend.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: extend.c,v 1.6 2001/01/29 01:58:07 niklas Exp $ */
+
/*
* Extended (M-X) commands, rebinding, and startup file processing.
*/
diff --git a/usr.bin/mg/file.c b/usr.bin/mg/file.c
index b1a023b5a68..8534f90e45e 100644
--- a/usr.bin/mg/file.c
+++ b/usr.bin/mg/file.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: file.c,v 1.5 2001/01/29 01:58:07 niklas Exp $ */
+
/*
* File commands.
*/
diff --git a/usr.bin/mg/fileio.c b/usr.bin/mg/fileio.c
index 096b4dd88e4..55cf3e177c4 100644
--- a/usr.bin/mg/fileio.c
+++ b/usr.bin/mg/fileio.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: fileio.c,v 1.10 2001/01/29 01:58:07 niklas Exp $ */
+
/*
* POSIX fileio.c
*/
diff --git a/usr.bin/mg/help.c b/usr.bin/mg/help.c
index ae6dd3b3af1..928b3247164 100644
--- a/usr.bin/mg/help.c
+++ b/usr.bin/mg/help.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: help.c,v 1.4 2001/01/29 01:58:07 niklas Exp $ */
+
/*
* Help functions for Mg 2
*/
diff --git a/usr.bin/mg/kbd.c b/usr.bin/mg/kbd.c
index c61e575742f..70b8d6e4ab3 100644
--- a/usr.bin/mg/kbd.c
+++ b/usr.bin/mg/kbd.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: kbd.c,v 1.4 2001/01/29 01:58:07 niklas Exp $ */
+
/*
* Terminal independent keyboard handling.
*/
diff --git a/usr.bin/mg/kbd.h b/usr.bin/mg/kbd.h
index a0433661b81..93332d1517a 100644
--- a/usr.bin/mg/kbd.h
+++ b/usr.bin/mg/kbd.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: kbd.h,v 1.4 2001/01/29 01:58:07 niklas Exp $ */
+
/*
* 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 b60c36f0b35..6e5a95c4837 100644
--- a/usr.bin/mg/key.h
+++ b/usr.bin/mg/key.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: key.h,v 1.3 2001/01/29 01:58:07 niklas Exp $ */
+
/* key.h: Insert file for mg 2 functions that need to reference key pressed */
#ifndef EXTERN
diff --git a/usr.bin/mg/keymap.c b/usr.bin/mg/keymap.c
index f5f94b30885..1ad9ec2b6eb 100644
--- a/usr.bin/mg/keymap.c
+++ b/usr.bin/mg/keymap.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: keymap.c,v 1.5 2001/01/29 01:58:08 niklas Exp $ */
+
/*
* Keyboard maps. This is character set dependent. The terminal specific
* parts of building the keymap has been moved to a better place.
diff --git a/usr.bin/mg/line.c b/usr.bin/mg/line.c
index 23266767fbc..8b6cfd5baa2 100644
--- a/usr.bin/mg/line.c
+++ b/usr.bin/mg/line.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: line.c,v 1.5 2001/01/29 01:58:08 niklas Exp $ */
+
/*
* Text line handling.
*
diff --git a/usr.bin/mg/macro.c b/usr.bin/mg/macro.c
index dba7c255130..83e8851f043 100644
--- a/usr.bin/mg/macro.c
+++ b/usr.bin/mg/macro.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: macro.c,v 1.4 2001/01/29 01:58:08 niklas Exp $ */
+
/*
* Keyboard macros.
*/
diff --git a/usr.bin/mg/macro.h b/usr.bin/mg/macro.h
index 287c949900b..ee1c5abfa1f 100644
--- a/usr.bin/mg/macro.h
+++ b/usr.bin/mg/macro.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: macro.h,v 1.3 2001/01/29 01:58:08 niklas Exp $ */
+
/* definitions for keyboard macros */
#ifndef EXTERN
diff --git a/usr.bin/mg/main.c b/usr.bin/mg/main.c
index 80047685af8..02729be0cd4 100644
--- a/usr.bin/mg/main.c
+++ b/usr.bin/mg/main.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: main.c,v 1.6 2001/01/29 01:58:08 niklas Exp $ */
+
/*
* Mainline.
*/
diff --git a/usr.bin/mg/match.c b/usr.bin/mg/match.c
index fb7a2908750..531a9a54e17 100644
--- a/usr.bin/mg/match.c
+++ b/usr.bin/mg/match.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: match.c,v 1.4 2001/01/29 01:58:08 niklas Exp $ */
+
/*
* Limited parenthesis matching routines
*
diff --git a/usr.bin/mg/mg.1 b/usr.bin/mg/mg.1
index e93f9e6145d..7a7f801fcab 100644
--- a/usr.bin/mg/mg.1
+++ b/usr.bin/mg/mg.1
@@ -1,3 +1,5 @@
+.\" $OpenBSD: mg.1,v 1.9 2001/01/29 01:58:08 niklas Exp $
+.\"
.Dd February 25, 2000
.Dt MG 1
.Os
diff --git a/usr.bin/mg/modes.c b/usr.bin/mg/modes.c
index e9223fc2f3f..eca9a1fa237 100644
--- a/usr.bin/mg/modes.c
+++ b/usr.bin/mg/modes.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: modes.c,v 1.4 2001/01/29 01:58:09 niklas Exp $ */
+
/*
* Commands to toggle modes. Without an argument, these functions will
* toggle the given mode. A negative or zero argument will turn the mode
diff --git a/usr.bin/mg/paragraph.c b/usr.bin/mg/paragraph.c
index f4e44042b91..fa1f196d4c8 100644
--- a/usr.bin/mg/paragraph.c
+++ b/usr.bin/mg/paragraph.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: paragraph.c,v 1.4 2001/01/29 01:58:09 niklas Exp $ */
+
/*
* Code for dealing with paragraphs and filling. Adapted from MicroEMACS 3.6
* and GNU-ified by mwm@ucbvax. Several bug fixes by blarson@usc-oberon.
diff --git a/usr.bin/mg/random.c b/usr.bin/mg/random.c
index d3b49179946..5f1a4910605 100644
--- a/usr.bin/mg/random.c
+++ b/usr.bin/mg/random.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: random.c,v 1.4 2001/01/29 01:58:09 niklas Exp $ */
+
/*
* Assorted commands.
* This file contains the command processors for a large assortment of
diff --git a/usr.bin/mg/re_search.c b/usr.bin/mg/re_search.c
index 290d334209c..afddea279a4 100644
--- a/usr.bin/mg/re_search.c
+++ b/usr.bin/mg/re_search.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: re_search.c,v 1.7 2001/01/29 01:58:09 niklas Exp $ */
+
/*
* regular expression search commands for Mg
*
diff --git a/usr.bin/mg/region.c b/usr.bin/mg/region.c
index 94fff75b48a..0331462c726 100644
--- a/usr.bin/mg/region.c
+++ b/usr.bin/mg/region.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: region.c,v 1.4 2001/01/29 01:58:09 niklas Exp $ */
+
/*
* Region based commands.
* The routines in this file deal with the region, that magic space between
diff --git a/usr.bin/mg/search.c b/usr.bin/mg/search.c
index 4430be86eb8..b4b67e2c69d 100644
--- a/usr.bin/mg/search.c
+++ b/usr.bin/mg/search.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: search.c,v 1.4 2001/01/29 01:58:09 niklas Exp $ */
+
/*
* Search commands.
* The functions in this file implement the search commands (both plain and
diff --git a/usr.bin/mg/spawn.c b/usr.bin/mg/spawn.c
index c8e2c99020c..63e8f43efd0 100644
--- a/usr.bin/mg/spawn.c
+++ b/usr.bin/mg/spawn.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: spawn.c,v 1.6 2001/01/29 01:58:09 niklas Exp $ */
+
/*
* Spawn. Actually just suspends Mg.
* Assumes POSIX job control.
diff --git a/usr.bin/mg/sysdef.h b/usr.bin/mg/sysdef.h
index 794d15d1d41..dc5d2158f3b 100644
--- a/usr.bin/mg/sysdef.h
+++ b/usr.bin/mg/sysdef.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: sysdef.h,v 1.7 2001/01/29 01:58:10 niklas Exp $ */
+
/*
* POSIX system header file
*/
diff --git a/usr.bin/mg/tty.c b/usr.bin/mg/tty.c
index 470296c532b..8ed08dd4861 100644
--- a/usr.bin/mg/tty.c
+++ b/usr.bin/mg/tty.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: tty.c,v 1.7 2001/01/29 01:58:10 niklas Exp $ */
+
/*
* Terminfo display driver
*
diff --git a/usr.bin/mg/ttydef.h b/usr.bin/mg/ttydef.h
index 848fff2f7f4..661032696f8 100644
--- a/usr.bin/mg/ttydef.h
+++ b/usr.bin/mg/ttydef.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: ttydef.h,v 1.4 2001/01/29 01:58:10 niklas Exp $ */
+
/*
* Terminfo terminal file, nothing special, just make it big
* enough for windowing systems.
diff --git a/usr.bin/mg/ttyio.c b/usr.bin/mg/ttyio.c
index 3d01d1a15a7..ef1977c10b4 100644
--- a/usr.bin/mg/ttyio.c
+++ b/usr.bin/mg/ttyio.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: ttyio.c,v 1.13 2001/01/29 01:58:10 niklas Exp $ */
+
/*
* POSIX terminal I/O.
*
diff --git a/usr.bin/mg/ttykbd.c b/usr.bin/mg/ttykbd.c
index fac0b871ffd..beea2b80fda 100644
--- a/usr.bin/mg/ttykbd.c
+++ b/usr.bin/mg/ttykbd.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: ttykbd.c,v 1.7 2001/01/29 01:58:10 niklas Exp $ */
+
/*
* Name: MG 2a
* Terminfo keyboard driver using key files
diff --git a/usr.bin/mg/version.c b/usr.bin/mg/version.c
index 3b375f02b93..f154e47f81e 100644
--- a/usr.bin/mg/version.c
+++ b/usr.bin/mg/version.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: version.c,v 1.4 2001/01/29 01:58:10 niklas Exp $ */
+
/*
* This file contains the string that get written
* out by the emacs-version command.
diff --git a/usr.bin/mg/window.c b/usr.bin/mg/window.c
index 648896a5c05..bc63b80c4f4 100644
--- a/usr.bin/mg/window.c
+++ b/usr.bin/mg/window.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: window.c,v 1.5 2001/01/29 01:58:10 niklas Exp $ */
+
/*
* Window handling.
*/
diff --git a/usr.bin/mg/word.c b/usr.bin/mg/word.c
index b81cf45a92b..6c020f0885b 100644
--- a/usr.bin/mg/word.c
+++ b/usr.bin/mg/word.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: word.c,v 1.4 2001/01/29 01:58:10 niklas Exp $ */
+
/*
* Word mode commands.
* The routines in this file implement commands that work word at a time.