[BACK]Return to rcsprog.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / rcs

Diff for /src/usr.bin/rcs/rcsprog.c between version 1.112 and 1.113

version 1.112, 2006/04/21 17:17:29 version 1.113, 2006/04/24 04:51:57
Line 31 
Line 31 
 #define RCS_CMD_MAXARG  128  #define RCS_CMD_MAXARG  128
 #define RCSPROG_OPTSTRING       "A:a:b::c:e::ik:Ll::m:Mn:N:o:qt::TUu::Vx::z::"  #define RCSPROG_OPTSTRING       "A:a:b::c:e::ik:Ll::m:Mn:N:o:qt::TUu::Vx::z::"
   
 #define DESC_PROMPT     "enter description, terminated with single '.' "      \  
                         "or end of file:\nNOTE: This is NOT the log message!\n"  
   
 const char rcs_version[] = "OpenCVS RCS version 3.6";  const char rcs_version[] = "OpenCVS RCS version 3.6";
   
 int      rcsflags;  int      rcsflags;
Line 60 
Line 57 
 struct cvs_wklhead rcs_temp_files;  struct cvs_wklhead rcs_temp_files;
   
 void sighdlr(int);  void sighdlr(int);
 static void  rcs_set_description(RCSFILE *, const char *);  
 static void  rcs_attach_symbol(RCSFILE *, const char *);  static void  rcs_attach_symbol(RCSFILE *, const char *);
   
 /* ARGSUSED */  /* ARGSUSED */
Line 260 
Line 256 
                         break;                          break;
                 case 't':                  case 't':
                         descfile = rcs_optarg;                          descfile = rcs_optarg;
                         rcsflags |= RCSPROG_TFLAG;                          rcsflags |= DESCRIPTION;
                         break;                          break;
                 case 'T':                  case 'T':
                         rcsflags |= PRESERVETIME;                          rcsflags |= PRESERVETIME;
Line 313 
Line 309 
                 if ((file = rcs_open(fpath, flags, fmode)) == NULL)                  if ((file = rcs_open(fpath, flags, fmode)) == NULL)
                         continue;                          continue;
   
                 if (rcsflags & RCSPROG_TFLAG)                  if (rcsflags & DESCRIPTION)
                         rcs_set_description(file, descfile);                          rcs_set_description(file, descfile);
                 else if (flags & RCS_CREATE)                  else if (flags & RCS_CREATE)
                         rcs_set_description(file, NULL);                          rcs_set_description(file, NULL);
Line 539 
Line 535 
                             symname, rbuf);                              symname, rbuf);
                 }                  }
         }          }
 }  
   
 /*  
  * Load description from <in> to <file>.  
  * If <in> starts with a `-', <in> is taken as the description.  
  * Otherwise <in> is the name of the file containing the description.  
  * If <in> is NULL, the description is read from stdin.  
  */  
 static void  
 rcs_set_description(RCSFILE *file, const char *in)  
 {  
         BUF *bp;  
         char *content;  
   
         /* Description is in file <in>. */  
         if (in != NULL && *in != '-') {  
                 bp = cvs_buf_load(in, BUF_AUTOEXT);  
                 cvs_buf_putc(bp, '\0');  
                 content = cvs_buf_release(bp);  
         /* Description is in <in>. */  
         } else if (in != NULL)  
                 /* Skip leading `-'. */  
                 content = xstrdup(in + 1);  
         /* Get description from stdin. */  
         else  
                 content = rcs_prompt(DESC_PROMPT);  
   
         rcs_desc_set(file, content);  
         xfree(content);  
 }  }

Legend:
Removed from v.1.112  
changed lines
  Added in v.1.113