diff options
author | lum <lum@cvs.openbsd.org> | 2011-08-01 12:15:24 +0000 |
---|---|---|
committer | lum <lum@cvs.openbsd.org> | 2011-08-01 12:15:24 +0000 |
commit | 1e57dc8578d2ee0a578b754065ff8cb373645b3e (patch) | |
tree | 9ee89c2e1ea1a03c17a3ecff338b8a28f5cde961 /usr.bin | |
parent | 15a9db0912d73dbd8f7d134ec082270b943b5371 (diff) |
Change Gnu to GNU in man page (also, while here, in README and in a comment)
ok jmc@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/mg/README | 2 | ||||
-rw-r--r-- | usr.bin/mg/mg.1 | 6 | ||||
-rw-r--r-- | usr.bin/mg/window.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/mg/README b/usr.bin/mg/README index cf2d7891745..7ca5573ab27 100644 --- a/usr.bin/mg/README +++ b/usr.bin/mg/README @@ -66,7 +66,7 @@ bytes. New implementation oddities: insert and define-key are new commands corresponding to the mocklisp -functions in Gnu Emacs. (Mg does not have non-command functions.) +functions in GNU Emacs. (Mg does not have non-command functions.) (Mg's insert will only insert one string.) The display wrap code does not work at all like that of GNU emacs. diff --git a/usr.bin/mg/mg.1 b/usr.bin/mg/mg.1 index 44f1f258e48..72baaa389b2 100644 --- a/usr.bin/mg/mg.1 +++ b/usr.bin/mg/mg.1 @@ -1,7 +1,7 @@ -.\" $OpenBSD: mg.1,v 1.52 2011/02/02 05:27:55 lum Exp $ +.\" $OpenBSD: mg.1,v 1.53 2011/08/01 12:15:23 lum Exp $ .\" This file is in the public domain. .\" -.Dd $Mdocdate: February 2 2011 $ +.Dd $Mdocdate: August 1 2011 $ .Dt MG 1 .Os .Sh NAME @@ -74,7 +74,7 @@ Note: The point and mark are window-specific in .Nm , not buffer-specific, as in other emacs flavours. .Sh DEFAULT KEY BINDINGS -Normal editing commands are very similar to Gnu Emacs. +Normal editing commands are very similar to GNU Emacs. In the following examples, C-x means Control-x, and M-x means Meta-x, where the Meta key may be either a special key on your keyboard or the ALT key; otherwise ESC followed by the key X works as well. diff --git a/usr.bin/mg/window.c b/usr.bin/mg/window.c index 5bea67a6d00..db913c95022 100644 --- a/usr.bin/mg/window.c +++ b/usr.bin/mg/window.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window.c,v 1.27 2009/06/04 23:39:37 kjell Exp $ */ +/* $OpenBSD: window.c,v 1.28 2011/08/01 12:15:23 lum Exp $ */ /* This file is in the public domain. */ @@ -121,7 +121,7 @@ nextwind(int f, int n) return (TRUE); } -/* not in Gnu Emacs */ +/* not in GNU Emacs */ /* * This command makes the previous window (previous => up the screen) the * current window. There are no errors, although the command does not do |