public inbox for libc-hacker@sourceware.org
 help / color / mirror / Atom feed
* A patch for csu/defs.awk
@ 1999-08-25 22:17 H.J. Lu
  0 siblings, 0 replies; only message in thread
From: H.J. Lu @ 1999-08-25 22:17 UTC (permalink / raw)
  To: GNU C Library

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)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~1999-08-25 22:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-08-25 22:17 A patch for csu/defs.awk H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).