]> git.eshelyaron.com Git - emacs.git/commitdiff
Renamed "struct buffer" to "struct termcap_buffer" to
authorRichard M. Stallman <rms@gnu.org>
Fri, 15 May 1998 00:34:07 +0000 (00:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 15 May 1998 00:34:07 +0000 (00:34 +0000)
avoid confusing the MSVC debugger.

src/termcap.c

index f41f24f160db5614ea262f705a381aa0ba5ffbda..8537d801b400c2799528c22191b4ac30df7b3e13 100644 (file)
@@ -349,7 +349,7 @@ tputs (str, nlines, outfun)
 \f
 /* Finding the termcap entry in the termcap data base.  */
 
-struct buffer
+struct termcap_buffer
   {
     char *beg;
     int size;
@@ -422,7 +422,7 @@ tgetent (bp, name)
 {
   register char *termcap_name;
   register int fd;
-  struct buffer buf;
+  struct termcap_buffer buf;
   register char *bp1;
   char *tc_search_point;
   char *term;
@@ -585,7 +585,7 @@ static int
 scan_file (str, fd, bufp)
      char *str;
      int fd;
-     register struct buffer *bufp;
+     register struct termcap_buffer *bufp;
 {
   register char *end;
 
@@ -681,7 +681,7 @@ compare_contin (str1, str2)
 static char *
 gobble_line (fd, bufp, append_end)
      int fd;
-     register struct buffer *bufp;
+     register struct termcap_buffer *bufp;
      char *append_end;
 {
   register char *end;