Skip to content

Commit

Permalink
v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gpoore committed Nov 29, 2023
1 parent b8df6a6 commit 8194727
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changes


## v1.6.1 (2023/11/28)

* Fixed bug from v1.6 that caused a space following a comma to be lost (#21).


## v1.6 (2023/11/19)

* Added new environment `VerbatimWrite`. This is similar to `fancyvrb`'s
Expand Down
8 changes: 6 additions & 2 deletions fvextra/fvextra.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
%<package>\NeedsTeXFormat{LaTeX2e}[1999/12/01]
%<package>\ProvidesPackage{fvextra}
%<*package>
[2023/11/19 v1.6 fvextra - extensions and patches for fancyvrb]
[2023/11/28 v1.6.1 fvextra - extensions and patches for fancyvrb]
%</package>
%
%<*driver>
Expand Down Expand Up @@ -253,6 +253,10 @@
% \fi
%
%
% \begin{changelog}{v1.6.1}{2023/11/28}
% \item Fixed bug from v1.6 that caused a space following a comma to be lost (\#21).
% \end{changelog}
%
% \begin{changelog}{v1.6}{2023/11/19}
% \item Added new environment \Verb{VerbatimWrite}. This is similar to \Verb{fancyvrb}'s \Verb{VerbatimOut}, except that it allows for writing to a file multiple times and guarantees truly verbatim output via \Verb{\detokenize}.
% \item Added new environment \Verb{VerbatimBuffer}. This stores the contents of an environment verbatim in a ``buffer,'' a sequence of numbered macros each of which contains one line of the environment. The ``buffered'' lines can then be looped over for further processing or later use.
Expand Down Expand Up @@ -1549,7 +1553,7 @@
% \begin{macro}{\FV@SpaceCatTen}
% Space with catcode 10. Used instead of \Verb[showspaces]{\ } and |\space| in some contexts to avoid issues in the event that these are redefined.
% \begin{macrocode}
\edef\FV@SpaceCatTen{\detokenize{ }}
\edef\FV@SpaceCatTen{{\detokenize{ }}}
% \end{macrocode}
% \end{macro}
%
Expand Down
4 changes: 2 additions & 2 deletions fvextra/fvextra.sty
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
%%
\NeedsTeXFormat{LaTeX2e}[1999/12/01]
\ProvidesPackage{fvextra}
[2023/11/19 v1.6 fvextra - extensions and patches for fancyvrb]
[2023/11/28 v1.6.1 fvextra - extensions and patches for fancyvrb]
\RequirePackage{etoolbox}
\RequirePackage{fancyvrb}
\RequirePackage{upquote}
Expand All @@ -38,7 +38,7 @@
\catcode`\ =\active%
\gdef\FV@ActiveSpaceToken{ }%
\endgroup%
\edef\FV@SpaceCatTen{\detokenize{ }}
\edef\FV@SpaceCatTen{{\detokenize{ }}}
\def\FV@FVSpaceToken{\FV@Space}
\def\FV@FVTabToken{\FV@Tab}
\def\FVExtraDoSpecials{%
Expand Down

0 comments on commit 8194727

Please sign in to comment.