texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Sun Oct 23 20:52:01 EDT 2005)


From: Karl Berry
Subject: texinfo update (Sun Oct 23 20:52:01 EDT 2005)
Date: Sun, 23 Oct 2005 20:52:05 -0400

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.542
retrieving revision 1.543
diff -c -r1.542 -r1.543
*** ChangeLog   9 Oct 2005 13:07:23 -0000       1.542
--- ChangeLog   24 Oct 2005 00:33:57 -0000      1.543
***************
*** 1,3 ****
--- 1,8 ----
+ 2005-10-23  Karl Berry  <address@hidden>
+ 
+       * util/texi2dvi (insert_commands): missing $ in case statement;
+       from report by Simon Josefsson.
+ 
  2005-10-09  Karl Berry  <address@hidden>
  
        * doc/texinfo.tex (\doignoretext): ignore characters after
Index: util/texi2dvi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.64
retrieving revision 1.65
diff -c -r1.64 -r1.65
*** util/texi2dvi       5 Oct 2005 23:34:19 -0000       1.64
--- util/texi2dvi       24 Oct 2005 00:33:43 -0000      1.65
***************
*** 1,6 ****
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
! # $Id: texi2dvi,v 1.64 2005/10/05 23:34:19 karl Exp $
  #
  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
  # 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
--- 1,6 ----
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
! # $Id: texi2dvi,v 1.65 2005/10/24 00:33:43 karl Exp $
  #
  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
  # 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
***************
*** 32,38 ****
  unset RUNNING_KSH
  
  # This string is expanded by rcs automatically when this file is checked out.
! rcs_revision='$Revision: 1.64 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
--- 32,38 ----
  unset RUNNING_KSH
  
  # This string is expanded by rcs automatically when this file is checked out.
! rcs_revision='$Revision: 1.65 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
***************
*** 745,753 ****
  insert_commands ()
  {
    local textra_cmd
!   case language in
      latex)   textra_cmd=1i;;
      texinfo) textra_cmd='/address@hidden/a';;
    esac
  
    if test -n "$textra"; then
--- 745,754 ----
  insert_commands ()
  {
    local textra_cmd
!   case $language in
      latex)   textra_cmd=1i;;
      texinfo) textra_cmd='/address@hidden/a';;
+     *)       echo "$0: internal error, unknown language: $language" >&2;
    esac
  
    if test -n "$textra"; then
P ChangeLog
P util/texi2dvi


reply via email to

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