qemacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemacs-commit] qemacs cptoqe.c jistoqe.c


From: Charlie Gordon
Subject: [Qemacs-commit] qemacs cptoqe.c jistoqe.c
Date: Tue, 07 Jan 2014 00:57:22 +0000

CVSROOT:        /sources/qemacs
Module name:    qemacs
Changes by:     Charlie Gordon <chqrlie>        14/01/07 00:57:22

Modified files:
        .              : cptoqe.c jistoqe.c 

Log message:
        quick fix for name clash on getline

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/cptoqe.c?cvsroot=qemacs&r1=1.14&r2=1.15
http://cvs.savannah.gnu.org/viewcvs/qemacs/jistoqe.c?cvsroot=qemacs&r1=1.4&r2=1.5

Patches:
Index: cptoqe.c
===================================================================
RCS file: /sources/qemacs/qemacs/cptoqe.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- cptoqe.c    2 May 2008 16:04:09 -0000       1.14
+++ cptoqe.c    7 Jan 2014 00:57:22 -0000       1.15
@@ -39,6 +39,7 @@
     return p;
 }
 
+#define getline my_getline        /* prevent name clash */
 static char *getline(char *buf, int buf_size, FILE *f, int strip_comments)
 {
     for (;;) {

Index: jistoqe.c
===================================================================
RCS file: /sources/qemacs/qemacs/jistoqe.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- jistoqe.c   22 Apr 2008 08:11:56 -0000      1.4
+++ jistoqe.c   7 Jan 2014 00:57:22 -0000       1.5
@@ -25,6 +25,7 @@
 
 #include "cutils.h"
 
+#define getline my_getline        /* prevent name clash */
 static char *getline(char *buf, int buf_size, FILE *f, int strip_comments)
 {
     for (;;) {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]