blowfish plugin: Fix merged texinfo.
authorMatt Birkholz <matt@birchwood-abbey.net>
Fri, 3 Nov 2017 17:58:02 +0000 (10:58 -0700)
committerMatt Birkholz <matt@birchwood-abbey.net>
Fri, 3 Nov 2017 17:58:02 +0000 (10:58 -0700)
src/blowfish/Makefile.am
src/blowfish/blowfish.texi

index 357319a538da7ca4c0c3827316488ac1636dae25..2040cb74a99ad4d1d4846d42222c114779198819 100644 (file)
@@ -29,7 +29,7 @@ MIT_SCHEME_EXE = @MIT_SCHEME_EXE@
 scmlibdir = @MIT_SCHEME_LIBDIR@
 scmlib_subdir = $(scmlibdir)blowfish
 scmdocdir = $(datarootdir)/doc/@MIT_SCHEME_PROJECT@
-#scminfodir = $(scmdocdir)/info
+scminfodir = $(scmdocdir)/info
 
 scmlib_LTLIBRARIES = blowfish-shim.la
 scmlib_DATA = blowfish-types.bin blowfish-const.bin
@@ -43,7 +43,9 @@ scmlib_sub_DATA = $(sources) $(binaries)
 scmlib_sub_DATA += make.scm @MIT_SCHEME_PKD@
 
 scminfo_DATA = blowfish.info
-AM_MAKEINFOHTMLFLAGS = --no-split
+info_TEXINFOS = blowfish.texi
+AM_MAKEINFOHTMLFLAGS = --no-split --css-ref=style.css
+AM_UPDATE_INFO_DIR = no
 
 AM_CPPFLAGS = -I@MIT_SCHEME_INCLUDEDIR@
 AM_CFLAGS = @MIT_CFLAGS@
index 8e15b2eb9ea7dbb09583171c836ca710ad5cd128..16e6ecd88bb38b6f5bd6fd54eac46446813a127d 100644 (file)
@@ -95,7 +95,7 @@ decryption phase.
 
 @deffn Procedure blowfish-set-key bytes
 Generate a Blowfish key from @var{bytes}, which must be 72 bytes or
-less in length.  For text keys (strings), apply @bref{md5} to the
+less in length.  For text keys (strings), apply @code{md5} to the
 string, and use the digest for @var{bytes}.
 @end deffn
 
@@ -122,6 +122,7 @@ therefore, they have a parameter @code{num}, the current offset in the
 initialization vector, which should start at zero and be stored
 between calls.
 
+@anchor{Blowfish-cbc}
 @deffn Procedure blowfish-cbc input output key init encrypt?
 Apply Blowfish in Cipher Block Chaining mode.
 @var{Input} is a multiple of 8 bytes.
@@ -134,6 +135,7 @@ Apply Blowfish in Cipher Block Chaining mode.
 (when @code{#f}).
 @end deffn
 
+@anchor{blowfish-cfb64}
 @deffn Procedure blowfish-cfb64 input istart iend output ostart key init num encrypt?
 Apply Blowfish in Cipher Feed-Back mode.
 @var{Istart} and @var{Iend} specify a range of bytes in @var{Input}.
@@ -150,6 +152,7 @@ Apply Blowfish in Cipher Feed-Back mode.
 The returned value is the new value of Num.
 @end deffn
 
+@anchor{blowfish-ofb64}
 @deffn Procedure blowfish-ofb64 input istart iend output ostart key init num
 Apply Blowfish in Output Feed-Back mode.
 @var{Istart} and @var{Iend} specify a range of bytes in @var{Input}.