X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Frepeat.c;h=5ca7dd9b2dcfdeee33675abd90b2526e26babfb2;hb=2e02472cf15ddb64c33a1477cf4cfbf3be2d0c95;hp=b95dbc00c62725ff44ffcc5ac0b10c26c0a94d16;hpb=fad826ff86720f76220b05e00dc7dfa46e418859;p=pspp diff --git a/src/repeat.c b/src/repeat.c index b95dbc00c6..5ca7dd9b2d 100644 --- a/src/repeat.c +++ b/src/repeat.c @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #include #include "repeat.h" @@ -146,7 +146,7 @@ internal_cmd_do_repeat (void) if (!lex_force_id ()) return 0; for (iter = repeat_tab; iter; iter = iter->next) - if (!strcmp (iter->id, tokid)) + if (!strcasecmp (iter->id, tokid)) { msg (SE, _("Identifier %s is given twice."), tokid); return 0;