diff -rpcd orig/doc/src/sgml/ecpg.sgml new/doc/src/sgml/ecpg.sgml
*** orig/doc/src/sgml/ecpg.sgml	2013-05-07 05:57:06.000000000 +0900
--- new/doc/src/sgml/ecpg.sgml	2013-06-27 14:29:03.000000000 +0900
*************** VAR <replaceable>varname</replaceable> I
*** 7691,7699 ****
      <title>Description</title>
  
      <para>
!      The <command>VAR</command> command defines a host variable.  It
!      is equivalent to an ordinary C variable definition inside a
!      declare section.
      </para>
     </refsect1>
  
--- 7691,7699 ----
      <title>Description</title>
  
      <para>
!      The <command>VAR</command> command assigns a new C data type
!      to a host variable.  The host variable must be previously
!      declared in a declare section.
      </para>
     </refsect1>
  
*************** VAR <replaceable>varname</replaceable> I
*** 7725,7732 ****
      <title>Examples</title>
  
  <programlisting>
! EXEC SQL VAR vc IS VARCHAR[10];
! EXEC SQL VAR boolvar IS bool;
  </programlisting>
     </refsect1>
  
--- 7725,7734 ----
      <title>Examples</title>
  
  <programlisting>
! Exec sql begin declare section;
! short a;
! exec sql end declare section;
! EXEC SQL VAR a IS int;
  </programlisting>
     </refsect1>
  
