]> andersk Git - openssh.git/commitdiff
- (dtucker) [mdoc2man.awk] Remove trailing "$" from Mdocdate regex so
authordtucker <dtucker>
Tue, 5 Jun 2007 09:30:47 +0000 (09:30 +0000)
committerdtucker <dtucker>
Tue, 5 Jun 2007 09:30:47 +0000 (09:30 +0000)
   mindrot's cvs doesn't expand it on us.

ChangeLog
mdoc2man.awk

index e8c5af12e6c24f6b440481ac96d7b98ce8a0dfdf..ad024b465c10edf979ead4ef4bcb4c09d396442d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -26,6 +26,8 @@
      committing at his request)
  - (dtucker) [mdoc2man.awk] Teach it to deal with $Mdocdate tags that
    OpenBSD's cvs now adds.
+ - (dtucker) [mdoc2man.awk] Remove trailing "$" from Mdocdate regex so
+   mindrot's cvs doesn't expand it on us.
 
 20070520
  - (dtucker) OpenBSD CVS Sync
index 4713ae901610fb11c6c5af32deadd1cb1802d576..67eb25c0813fd0c2042573e63ca2150e8e6b1e46 100644 (file)
@@ -138,7 +138,7 @@ function add(str) {
        nospace=0
     }
     if(match(words[w],"^Dd$")) {
-      if(match(words[w+1],"^\\$Mdocdate$")) {
+      if(match(words[w+1],"^\\$Mdocdate:")) {
         w++;
         if(match(words[w+4],"^\\$$")) {
           words[w+4] = ""
This page took 0.104071 seconds and 5 git commands to generate.