This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.
Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Here is a patch for csu/defs.awk.
H.J. Lu (hjl@gnu.org)
--
Wed Aug 25 22:18:27 1999 H.J. Lu <hjl@gnu.org>
* csu/defs.awk (.end): Only match with leading white spaces.
(.align): Likewise.
Index: csu/defs.awk
===================================================================
RCS file: /work/cvs/gnu/glibc/csu/defs.awk,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 defs.awk
--- csu/defs.awk 1999/08/08 17:01:09 1.1.1.1
+++ csu/defs.awk 1999/08/26 05:13:25
@@ -1,5 +1,5 @@
-/\.end/ { need_end = 1 }
-/\.align/ { if($2 > max) max = $2; }
+/^[ ]*\.end/ { need_end = 1 }
+/^[ ]*\.align/ { if($2 > max) max = $2; }
END {
if(need_end)
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |