Fix typo in BEDIT warning.
authorNick Clifton <nickc@redhat.com>
Tue, 9 Apr 2002 15:23:38 +0000 (15:23 +0000)
committerNick Clifton <nickc@redhat.com>
Tue, 9 Apr 2002 15:23:38 +0000 (15:23 +0000)
binutils/ChangeLog
binutils/rcparse.y

index ff01d21899b480dff6e78c290b70acbbbdea50ad..18f1baac069068092c69ca2eda14bbf34dfc671e 100644 (file)
@@ -2,6 +2,7 @@
 
        * rcparse.y: CLASS definitions in DIALOG resources 
        are quoted.
+       Fix typo in BEDIT warning
 
 2002-04-09  Gunnar Degnbol <degnbol@danbbs.dk>
 
index 3b8726a9be7f6a32e6fa955d8b194754aa379db6..b141f4a18ed626e46dc7549e3721ce412b9db708 100644 (file)
@@ -1,5 +1,5 @@
 %{ /* rcparse.y -- parser for Windows rc files
-   Copyright 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+   Copyright 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
    This file is part of GNU Binutils.
@@ -519,7 +519,7 @@ control:
          {
            $$ = $3;
            if (dialog.ex == NULL)
-             rcparse_warning (_("IEDIT requires DIALOGEX"));
+             rcparse_warning (_("BEDIT requires DIALOGEX"));
            res_string_to_id (&$$->class, "BEDIT");
          }
        | CHECKBOX
@@ -573,7 +573,7 @@ control:
                $$->data = $12;
              }
            $$->class.named = 1;
-           unicode_from_ascii(&$$->class.u.n.length, &$$->class.u.n.name, $5);
+           unicode_from_ascii (&$$->class.u.n.length, &$$->class.u.n.name, $5);
          }
        | CONTROL optstringc numexpr ',' QUOTEDSTRING control_styleexpr
            cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr opt_control_data
@@ -584,7 +584,7 @@ control:
            $$->help = $12;
            $$->data = $13;
            $$->class.named = 1;
-           unicode_from_ascii(&$$->class.u.n.length, &$$->class.u.n.name, $5);
+           unicode_from_ascii (&$$->class.u.n.length, &$$->class.u.n.name, $5);
          }
        | CTEXT
            {
This page took 0.033333 seconds and 4 git commands to generate.