emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/undo-fu-session b492c07573 43/53: Fix bzip2 and Z-standard


From: ELPA Syncer
Subject: [nongnu] elpa/undo-fu-session b492c07573 43/53: Fix bzip2 and Z-standard compression types
Date: Thu, 7 Jul 2022 12:05:29 -0400 (EDT)

branch: elpa/undo-fu-session
commit b492c0757319e0bf08e4d3c8eeaf20af361bed58
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>

    Fix bzip2 and Z-standard compression types
    
    Running `undo-fu-session-compression-update` will resolve any
    issues caused by writing these files.
---
 readme.rst         | 2 +-
 undo-fu-session.el | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/readme.rst b/readme.rst
index d544f926e0..5f0e3cba9d 100644
--- a/readme.rst
+++ b/readme.rst
@@ -71,7 +71,7 @@ Customization
    Write linear undo history, omitting branches which were themselves undone.
 
    Note that this only writes undo steps which would be used by ``undo-only``.
-``undo-fu-session-compression`` (``'bzip2`` ``'gz`` ``'xz`` ``'zstd`` ``nil``)
+``undo-fu-session-compression`` (``'bz2`` ``'gz`` ``'xz`` ``'zst`` ``nil``)
    Compression setting for stored undo data.
 
    After changing, run ``undo-fu-session-compression-update`` to convert 
existing files to the newly selected format.
diff --git a/undo-fu-session.el b/undo-fu-session.el
index e2d7eaad89..67768eaa9f 100755
--- a/undo-fu-session.el
+++ b/undo-fu-session.el
@@ -67,10 +67,10 @@ to convert existing files to the newly selected format."
   :type
   '
   (choice
-    (const :tag "BZip2" bzip2)
+    (const :tag "BZip2" bz2)
     (const :tag "GZip" gz)
     (const :tag "XZ" xz)
-    (const :tag "ZSTD" zstd)
+    (const :tag "Z-Standard" zst)
 
     (const :tag "No Compression" nil)))
 



reply via email to

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