Removed writerAscii in WriterOptions.

No longer needed or used.
This commit is contained in:
John MacFarlane 2011-12-22 11:41:35 -08:00
parent 7046cef263
commit b892b29eac

View file

@ -482,7 +482,6 @@ data WriterOptions = WriterOptions
, writerHtml5 :: Bool -- ^ Produce HTML5
, writerChapters :: Bool -- ^ Use "chapter" for top-level sects
, writerListings :: Bool -- ^ Use listings package for code
, writerAscii :: Bool -- ^ Avoid non-ascii characters
} deriving Show
{-# DEPRECATED writerXeTeX "writerXeTeX no longer does anything" #-}
@ -516,7 +515,6 @@ defaultWriterOptions =
, writerHtml5 = False
, writerChapters = False
, writerListings = False
, writerAscii = False
}
--