From 48c9f0ebd554966dd52cf54f0f0ee933de085102 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 25 Mar 1998 00:33:29 +0000 Subject: [PATCH] * rclex.l: Accept { and } as synonyms for BEGIN and END. --- binutils/ChangeLog | 26 ++++++++++++++++++++++++++ binutils/rclex.l | 4 +++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 7563b21..a2a0d78 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,29 @@ +Tue Mar 24 19:33:08 1998 Ian Lance Taylor + + * rclex.l: Accept { and } as synonyms for BEGIN and END. + +Fri Mar 20 19:18:08 1998 Ian Lance Taylor + + * aclocal.m4, configure: Rebuild with libtool 1.2. + +Tue Feb 24 13:07:50 1998 Doug Evans + + * objdump.c (disassemble_data): Delete "++place" after call to + find_symbol_for_address. Set disasm_info.symbols to array of + symbols at the current address. + +Wed Feb 18 23:39:46 1998 Richard Henderson + + * Makefile.am (install-exec-local): Install properly when ln + fails or tooldir == prefix. + +Tue Feb 17 18:40:55 1998 Richard Henderson + + * objcopy.c (compare_section_lma): Rename from _vma. + (copy_object): Gap fill based on LMA not VMA. + * binutils.texi: Update and clarify. + * objcopy.1: Likewise. + Tue Feb 17 20:34:11 1998 Ian Lance Taylor * dlltool.c (make_one_lib_file): Don't add 1 to hint. diff --git a/binutils/rclex.l b/binutils/rclex.l index d84ec47..50ef185 100644 --- a/binutils/rclex.l +++ b/binutils/rclex.l @@ -1,5 +1,5 @@ %{ /* rclex.l -- lexer for Windows rc files parser */ -/* Copyright 1997 Free Software Foundation, Inc. +/* Copyright 1997, 1998 Free Software Foundation, Inc. Written by Ian Lance Taylor, Cygnus Support. This file is part of GNU Binutils. @@ -58,7 +58,9 @@ static char *get_string PARAMS ((int)); %% "BEGIN" { return BEG; } +"{" { return BEG; } "END" { return END; } +"}" { return END; } "ACCELERATORS" { return ACCELERATORS; } "VIRTKEY" { return VIRTKEY; } "ASCII" { return ASCII; } -- 2.7.4