Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/menuc Remove extra characters in example strings.



details:   https://anonhg.NetBSD.org/src/rev/08b59e152fc7
branches:  trunk
changeset: 546931:08b59e152fc7
user:      phil <phil%NetBSD.org@localhost>
date:      Fri May 09 05:28:30 2003 +0000

description:
Remove extra characters in example strings.

diffstat:

 usr.bin/menuc/menuc.1 |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 7c4809445f52 -r 08b59e152fc7 usr.bin/menuc/menuc.1
--- a/usr.bin/menuc/menuc.1     Fri May 09 01:45:08 2003 +0000
+++ b/usr.bin/menuc/menuc.1     Fri May 09 05:28:30 2003 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: menuc.1,v 1.13 2003/02/25 10:35:48 wiz Exp $
+.\"    $NetBSD: menuc.1,v 1.14 2003/05/09 05:28:30 phil Exp $
 .\"
 .\" Copyright 1997 Piermont Information Systems Inc.
 .\" All rights reserved.
@@ -462,7 +462,7 @@
 default x=20, y=10, box, scrollable, exit;
 
 error action {
-   fprintf (stderr, "Example Menu: Could not initialize curses.\en");
+   fprintf (stderr, "Example Menu: Could not initialize curses.");
    exit(1);
 };
 
@@ -470,7 +470,7 @@
    display action { init_main(); };
    option "Option 1",
       action (endwin) {
-        printf ("That was option 1!\en");
+        printf ("That was option 1!");
         sleep(3);
       };
    option "Sub Menu", sub menu othermenu;



Home | Main Index | Thread Index | Old Index