[Pinfo-devel] r157 - pinfo/branches/cxx/src

Nathanael Nerode neroden-guest at costa.debian.org
Sat Sep 3 21:01:15 UTC 2005


Author: neroden-guest
Date: 2005-09-03 21:01:14 +0000 (Sat, 03 Sep 2005)
New Revision: 157

Removed:
   pinfo/branches/cxx/src/rcsid.h
Modified:
   pinfo/branches/cxx/src/Makefile.am
   pinfo/branches/cxx/src/colors.cxx
   pinfo/branches/cxx/src/common_includes.h
   pinfo/branches/cxx/src/datatypes.cxx
   pinfo/branches/cxx/src/filehandling_functions.cxx
   pinfo/branches/cxx/src/initializelinks.cxx
   pinfo/branches/cxx/src/mainfunction.cxx
   pinfo/branches/cxx/src/manual.cxx
   pinfo/branches/cxx/src/parse_config.cxx
   pinfo/branches/cxx/src/pinfo.cxx
   pinfo/branches/cxx/src/printinfo.cxx
   pinfo/branches/cxx/src/regexp_search.cxx
   pinfo/branches/cxx/src/sigblock.cxx
   pinfo/branches/cxx/src/signal_handler.cxx
   pinfo/branches/cxx/src/snprintf.cxx
   pinfo/branches/cxx/src/utils.cxx
   pinfo/branches/cxx/src/video.cxx
Log:
Get rid of the bletchulous rcsid.h.


Modified: pinfo/branches/cxx/src/Makefile.am
===================================================================
--- pinfo/branches/cxx/src/Makefile.am	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/Makefile.am	2005-09-03 21:01:14 UTC (rev 157)
@@ -34,8 +34,7 @@
 		printinfo.h \
 		tmpfiles.cxx \
 		tmpfiles.h \
-		localestuff.h \
-		rcsid.h
+		localestuff.h
 
 pinfo_SNPRINTF = snprintf.cxx # snprintf.h
 pinfo_SIGBLOCK = sigblock.cxx sigblock.h

Modified: pinfo/branches/cxx/src/colors.cxx
===================================================================
--- pinfo/branches/cxx/src/colors.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/colors.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -21,8 +21,6 @@
 
 #include "common_includes.h"
 
-RCSID("$Id$")
-
 #ifndef NO_COLOR_CURSES
 struct colours cols =
 {

Modified: pinfo/branches/cxx/src/common_includes.h
===================================================================
--- pinfo/branches/cxx/src/common_includes.h	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/common_includes.h	2005-09-03 21:01:14 UTC (rev 157)
@@ -45,7 +45,6 @@
 #include "config.h"
 #endif
 
-#include "rcsid.h"
 #include "datatypes.h"
 #include "filehandling_functions.h"
 #include "video.h"

Modified: pinfo/branches/cxx/src/datatypes.cxx
===================================================================
--- pinfo/branches/cxx/src/datatypes.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/datatypes.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -25,8 +25,6 @@
 using std::string;
 using std::vector;
 
-RCSID("$Id$")
-
 int verbose = 1;
 
 string filenameprefix;

Modified: pinfo/branches/cxx/src/filehandling_functions.cxx
===================================================================
--- pinfo/branches/cxx/src/filehandling_functions.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/filehandling_functions.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -28,8 +28,6 @@
 #include <vector>
 using std::vector;
 
-RCSID("$Id$")
-
 void
 basename_and_dirname(const string filename, string& basename, string& dirname)
 {

Modified: pinfo/branches/cxx/src/initializelinks.cxx
===================================================================
--- pinfo/branches/cxx/src/initializelinks.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/initializelinks.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -25,8 +25,6 @@
 #include <vector>
 using std::vector;
 
-RCSID("$Id$")
-
 #define MENU_DOT 0
 #define NOTE_DOT 1
 

Modified: pinfo/branches/cxx/src/mainfunction.cxx
===================================================================
--- pinfo/branches/cxx/src/mainfunction.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/mainfunction.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -26,8 +26,6 @@
 #include <vector>
 using std::vector;
 
-RCSID("$Id$")
-
 #include <ctype.h>
 
 #ifndef MIN

Modified: pinfo/branches/cxx/src/manual.cxx
===================================================================
--- pinfo/branches/cxx/src/manual.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/manual.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -22,8 +22,6 @@
 #include "common_includes.h"
 #include "tmpfiles.h"
 
-RCSID("$Id$")
-
 #include <ctype.h>
 #include <sys/stat.h>
 #include <string>

Modified: pinfo/branches/cxx/src/parse_config.cxx
===================================================================
--- pinfo/branches/cxx/src/parse_config.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/parse_config.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -26,8 +26,6 @@
 #include <string>
 using std::string;
 
-RCSID("$Id$")
-
 #include <ctype.h>
 
 #define COLOR_DEFAULT -1	/* mutt uses this was for transparency */

Modified: pinfo/branches/cxx/src/pinfo.cxx
===================================================================
--- pinfo/branches/cxx/src/pinfo.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/pinfo.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -28,8 +28,6 @@
 #include <string>
 using std::string;
 
-RCSID(PKG_VER "$Id$")
-
 #ifdef HAVE_GETOPT_LONG
  #include <getopt.h>
 #endif

Modified: pinfo/branches/cxx/src/printinfo.cxx
===================================================================
--- pinfo/branches/cxx/src/printinfo.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/printinfo.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -24,8 +24,6 @@
 #include <string>
 using std::string;
 
-RCSID("$Id$")
-
 /*
  * Algorithm: We first print highlights, then we send `\r' to the printer,
  * and we draw the base line. Thus highlights are printed `twice', and

Deleted: pinfo/branches/cxx/src/rcsid.h

Modified: pinfo/branches/cxx/src/regexp_search.cxx
===================================================================
--- pinfo/branches/cxx/src/regexp_search.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/regexp_search.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -21,8 +21,6 @@
 
 #include"common_includes.h"
 
-RCSID("$Id$")
-
 #ifndef ___DONT_USE_REGEXP_SEARCH___
 #include"regex.h"
 #include<ctype.h>

Modified: pinfo/branches/cxx/src/sigblock.cxx
===================================================================
--- pinfo/branches/cxx/src/sigblock.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/sigblock.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -22,9 +22,6 @@
 #include "config.h"
 #endif
 
-#include "rcsid.h"
-RCSID("$Id$")
-
 #ifndef HAVE_SIGBLOCK
 
 #include <errno.h>

Modified: pinfo/branches/cxx/src/signal_handler.cxx
===================================================================
--- pinfo/branches/cxx/src/signal_handler.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/signal_handler.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -24,8 +24,6 @@
 #include "sigblock.h"
 #endif
 
-RCSID("$Id$")
-
 #include <termios.h>
 #include <sys/ioctl.h>
 

Modified: pinfo/branches/cxx/src/snprintf.cxx
===================================================================
--- pinfo/branches/cxx/src/snprintf.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/snprintf.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -44,10 +44,6 @@
 #include "config.h"
 #endif
 
-#include "rcsid.h"
-RCSID("$Id$")
-
-
 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
 
 #include <string.h>

Modified: pinfo/branches/cxx/src/utils.cxx
===================================================================
--- pinfo/branches/cxx/src/utils.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/utils.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -27,8 +27,6 @@
 #include <vector>
 using std::vector;
 
-RCSID("$Id$")
-
 #include <regex.h>
 #include <ctype.h>
 

Modified: pinfo/branches/cxx/src/video.cxx
===================================================================
--- pinfo/branches/cxx/src/video.cxx	2005-09-03 20:53:50 UTC (rev 156)
+++ pinfo/branches/cxx/src/video.cxx	2005-09-03 21:01:14 UTC (rev 157)
@@ -25,8 +25,6 @@
 #include <string>
 using std::string;
 
-RCSID("$Id$")
-
 void info_add_highlights(int pos, int cursor, long lines, int column, char **message);
 
 /*




More information about the Pinfo-devel mailing list