texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Sat Jul 24 14:22:01 EDT 2004)


From: Karl Berry
Subject: texinfo update (Sat Jul 24 14:22:01 EDT 2004)
Date: Sat, 24 Jul 2004 14:22:11 -0400

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.359
retrieving revision 1.360
diff -c -r1.359 -r1.360
*** ChangeLog   19 Jul 2004 19:36:07 -0000      1.359
--- ChangeLog   24 Jul 2004 18:12:38 -0000      1.360
***************
*** 1,3 ****
--- 1,11 ----
+ 2004-07-24  Karl Berry  <address@hidden>
+ 
+       * info/echo-area.c (ea_possible_completions),
+       * info/session.c (forward_move_node_structure),
+       * info/infokey.c (compile): cast to intptr_t to avoid cast to
+               pointer from integer of different size.
+       From Havard Eidnes <address@hidden>, 14 Jul 2004 20:38:59 +0200.
+ 
  2004-07-19  Alper Ersoy  <address@hidden>
  
        * makeinfo/makeinfo.c (main): with XML, instead of directly calling
***************
*** 5,10 ****
--- 13,19 ----
        variable declarations until output document is started.
        (convert_from_loaded_file): handle variables provided with -D and -U
        flags here, just before entering the reader_loop.
+       (Otherwise, -D/-U with --xml cause a segfault.)
  
  2004-07-15  Werner Lemberg  <address@hidden>
  
Index: info/echo-area.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/info/echo-area.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -c -r1.3 -r1.4
*** info/echo-area.c    11 Apr 2004 17:56:45 -0000      1.3
--- info/echo-area.c    24 Jul 2004 18:12:38 -0000      1.4
***************
*** 1,5 ****
  /* echo-area.c -- how to read a line in the echo area.
!    $Id: echo-area.c,v 1.3 2004/04/11 17:56:45 karl Exp $
  
     Copyright (C) 1993, 1997, 1998, 1999, 2001, 2004 Free Software
     Foundation, Inc.
--- 1,5 ----
  /* echo-area.c -- how to read a line in the echo area.
!    $Id: echo-area.c,v 1.4 2004/07/24 18:12:38 karl Exp $
  
     Copyright (C) 1993, 1997, 1998, 1999, 2001, 2004 Free Software
     Foundation, Inc.
***************
*** 936,942 ****
        printf_to_message_buffer (completions_found_index == 1
                                  ? (char *) _("One completion:\n")
                                  : (char *) _("%d completions:\n"),
!                               (void *) completions_found_index, NULL, NULL);
  
        /* Find the maximum length of a label. */
        for (i = 0; i < completions_found_index; i++)
--- 936,942 ----
        printf_to_message_buffer (completions_found_index == 1
                                  ? (char *) _("One completion:\n")
                                  : (char *) _("%d completions:\n"),
!                               (void*)((intptr_t)completions_found_index), 
NULL, NULL);
  
        /* Find the maximum length of a label. */
        for (i = 0; i < completions_found_index; i++)
Index: info/infokey.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/info/infokey.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -c -r1.6 -r1.7
*** info/infokey.c      11 Apr 2004 17:56:45 -0000      1.6
--- info/infokey.c      24 Jul 2004 18:12:38 -0000      1.7
***************
*** 1,5 ****
  /* infokey.c -- compile ~/.infokey to ~/.info.
!    $Id: infokey.c,v 1.6 2004/04/11 17:56:45 karl Exp $
  
     Copyright (C) 1999, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
  
--- 1,5 ----
  /* infokey.c -- compile ~/.infokey to ~/.info.
!    $Id: infokey.c,v 1.7 2004/07/24 18:12:38 karl Exp $
  
     Copyright (C) 1999, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
  
***************
*** 639,645 ****
                {
                  syntax_error (filename, lnum,
                        (char *) _("NUL character (^%c) not permitted"),
!                       (void *) c, NULL, NULL, NULL);
                  error = 1;
                }
              seqstate = normal;
--- 639,645 ----
                {
                  syntax_error (filename, lnum,
                        (char *) _("NUL character (^%c) not permitted"),
!                       (void *)((intptr_t)c), NULL, NULL, NULL);
                  error = 1;
                }
              seqstate = normal;
***************
*** 663,669 ****
              if (alen == 0)
                {
                  syntax_error (filename, lnum, (char *) _("missing action 
name"),
!                       (void *) c, NULL, NULL, NULL);
                  error = 1;
                }
              else
--- 663,669 ----
              if (alen == 0)
                {
                  syntax_error (filename, lnum, (char *) _("missing action 
name"),
!                       (void *)((intptr_t)c), NULL, NULL, NULL);
                  error = 1;
                }
              else
Index: info/session.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/info/session.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -c -r1.13 -r1.14
*** info/session.c      3 Jun 2004 15:58:51 -0000       1.13
--- info/session.c      24 Jul 2004 18:12:38 -0000      1.14
***************
*** 1,5 ****
  /* session.c -- user windowing interface to Info.
!    $Id: session.c,v 1.13 2004/06/03 15:58:51 karl Exp $
  
     Copyright (C) 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
     Free Software Foundation, Inc.
--- 1,5 ----
  /* session.c -- user windowing interface to Info.
!    $Id: session.c,v 1.14 2004/07/24 18:12:38 karl Exp $
  
     Copyright (C) 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
     Free Software Foundation, Inc.
***************
*** 962,968 ****
                       same as the first menu item found in this node. */
                    window_message_in_echo_area
                      ((char *) _("Moving Up %d time(s), then Next."),
!                      (void *) up_counter, NULL);
  
                    info_handle_pointer ("Next", window);
                    return;
--- 962,968 ----
                       same as the first menu item found in this node. */
                    window_message_in_echo_area
                      ((char *) _("Moving Up %d time(s), then Next."),
!                      (void *)((intptr_t)up_counter), NULL);
  
                    info_handle_pointer ("Next", window);
                    return;
***************
*** 1975,1981 ****
      }
    else
      info_error ((char *) _("There aren't %d items in this menu."),
!         (void *) item, NULL);
  
    info_free_references (menu);
    return;
--- 1975,1981 ----
      }
    else
      info_error ((char *) _("There aren't %d items in this menu."),
!         (void *)((intptr_t)item), NULL);
  
    info_free_references (menu);
    return;
P ChangeLog
P info/echo-area.c
P info/infokey.c
P info/session.c


reply via email to

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