diff options
author | 2011-08-01 12:15:23 +0000 | |
---|---|---|
committer | 2011-08-01 12:15:23 +0000 | |
commit | 5ef5b4be13dfe5ec55e1b7084b94c1de430884c7 (patch) | |
tree | 2c1dac43f16e8b476eb7b3b624a453036a35e9f3 | |
parent | Add missing closing braces in usage(). (diff) | |
download | wireguard-openbsd-5ef5b4be13dfe5ec55e1b7084b94c1de430884c7.tar.xz wireguard-openbsd-5ef5b4be13dfe5ec55e1b7084b94c1de430884c7.zip |
Change Gnu to GNU in man page (also, while here, in README and in a comment)
ok jmc@
-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 |