diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-03-25 00:33:29 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-03-25 00:33:29 +0000 |
commit | 48c9f0ebd554966dd52cf54f0f0ee933de085102 (patch) | |
tree | 845a1221d1ed8b9f088fe998ce5ca3c489913a70 /binutils | |
parent | e855e57637eda6c0869e6dfda9cf41c32a65a379 (diff) | |
download | gdb-48c9f0ebd554966dd52cf54f0f0ee933de085102.zip gdb-48c9f0ebd554966dd52cf54f0f0ee933de085102.tar.gz gdb-48c9f0ebd554966dd52cf54f0f0ee933de085102.tar.bz2 |
* rclex.l: Accept { and } as synonyms for BEGIN and END.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 26 | ||||
-rw-r--r-- | binutils/rclex.l | 4 |
2 files changed, 29 insertions, 1 deletions
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 <ian@cygnus.com> + + * rclex.l: Accept { and } as synonyms for BEGIN and END. + +Fri Mar 20 19:18:08 1998 Ian Lance Taylor <ian@cygnus.com> + + * aclocal.m4, configure: Rebuild with libtool 1.2. + +Tue Feb 24 13:07:50 1998 Doug Evans <devans@canuck.cygnus.com> + + * 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 <rth@cygnus.com> + + * Makefile.am (install-exec-local): Install properly when ln + fails or tooldir == prefix. + +Tue Feb 17 18:40:55 1998 Richard Henderson <rth@cygnus.com> + + * 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 <ian@cygnus.com> * 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; } |