* observer.sh: Move comments in sed command to first column.
authorJoel Brobecker <brobecker@gnat.com>
Sat, 17 Apr 2004 04:45:32 +0000 (04:45 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Sat, 17 Apr 2004 04:45:32 +0000 (04:45 +0000)
gdb/ChangeLog
gdb/observer.sh

index f5be832..91fb912 100644 (file)
@@ -1,3 +1,7 @@
+2004-04-16  Joel Brobecker  <brobecker@gnat.com>
+
+       * observer.sh: Move comments in sed command to first column.
+
 2004-04-16  Jason Molenda  (jmolenda@apple.com)
 
        * frame.c: Minor typeo corrections in comments.
index c67346f..c5d3779 100755 (executable)
@@ -62,22 +62,22 @@ esac
 IFS=:
 sed -n '
 /@deftypefun void/{
-    # Save original line for later processing into the actual parameter
+# Save original line for later processing into the actual parameter
     h
-    # Convert from: @deftypefun void EVENT (TYPE @var{PARAM},...)
-    # to event and formals: EVENT:TYPE PARAM, ...:
+# Convert from: @deftypefun void EVENT (TYPE @var{PARAM},...)
+# to event and formals: EVENT:TYPE PARAM, ...:
     s/^.* void \([a-z_][a-z_]*\) (\(.*\))$/\1:\2/
     s/@var{//g
     s/}//g
-    # Switch to held
+# Switch to held
     x
-    # Convert from: @deftypefun void FUNC (TYPE @var{PARAM},...)
-    # to actuals: PARAM, ...
+# Convert from: @deftypefun void FUNC (TYPE @var{PARAM},...)
+# to actuals: PARAM, ...
     s/^[^{]*[{]*//
     s/[}]*[^}]*$//
     s/}[^{]*{/, /g
-    # Combine held (EVENT:TYPE PARAM, ...:) and pattern (PARAM, ...) into
-    # FUNC:TYPE PARAM, ...:PARAM, ...
+# Combine held (EVENT:TYPE PARAM, ...:) and pattern (PARAM, ...) into
+# FUNC:TYPE PARAM, ...:PARAM, ...
     H
     x
     s/\n/:/g