<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/ccrypt/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/ccrypt/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Tue, 05 Mar 2024 02:35:29 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/ccrypt/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>#30 ps-crypt 1.11 breaks with development version of emacs</title><link>https://sourceforge.net/p/ccrypt/bugs/30/?limit=50#ebbf</link><description>&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;: open --&amp;gt; closed-fixed&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter Selinger</dc:creator><pubDate>Tue, 05 Mar 2024 02:35:29 -0000</pubDate><guid>https://sourceforge.net81969b03ad842873bdaa908e49304979d9b0af2c</guid></item><item><title>#30 ps-crypt 1.11 breaks with development version of emacs</title><link>https://sourceforge.net/p/ccrypt/bugs/30/?limit=50#dbea</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;At least &lt;code&gt;(make-vector 31 0)&lt;/code&gt; doesn't seem to break anything for me, so I'm happy to make that change.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter Selinger</dc:creator><pubDate>Tue, 05 Mar 2024 02:35:10 -0000</pubDate><guid>https://sourceforge.neta2e2d79a87f539db05d7a4fe257f8b40c81bde66</guid></item><item><title>#30 ps-crypt 1.11 breaks with development version of emacs</title><link>https://sourceforge.net/p/ccrypt/bugs/30/?limit=25#eefe</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Changing &lt;code&gt;(make-vector 31 nil)&lt;/code&gt; to &lt;code&gt;(make-vector 31 0)&lt;/code&gt; seems to fix it for me, but I'm not an expert and this is only very lightly tested.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dan Christensen</dc:creator><pubDate>Mon, 04 Mar 2024 21:01:49 -0000</pubDate><guid>https://sourceforge.neta7dada6026be73a3483fc0f53e15121c91cb1699</guid></item><item><title>ps-crypt 1.11 breaks with development version of emacs</title><link>https://sourceforge.net/p/ccrypt/bugs/30/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;When I try to open a .cpt file, I get:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;&lt;span class="k"&gt;if&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;Wrong&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;argument&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;obarrayp&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;[&lt;/span&gt;&lt;span class="n"&gt;nil&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;nil&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;nil&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;nil&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;nil&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;nil&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;nil&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;nil&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;nil&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;nil&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;...]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;This is presumably due to the recent changes to using obarrays, e.g. commit 462d8ba813e0 from Feb 10.  The etc/NEWS file contains the following info:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;*** New obarray type.&lt;br/&gt;
Obarrays are now represented by an opaque type instead of using vectors.&lt;br/&gt;
They are created by 'obarray-make' and manage their internal storage&lt;br/&gt;
automatically, which means that the size parameter to 'obarray-make' can&lt;br/&gt;
safely be omitted.  That is, they do not become slower as they fill up.&lt;/p&gt;
&lt;p&gt;The old vector representation is still accepted by functions operating&lt;br/&gt;
on obarrays, but 'obarrayp' only returns t for obarray objects.&lt;br/&gt;
'type-of' now returns 'obarray' for obarray objects.&lt;/p&gt;
&lt;p&gt;Old code which (incorrectly) created "obarrays" as Lisp vectors filled&lt;br/&gt;
with something other than 0, as in '(make-vector N nil)', will no longer&lt;br/&gt;
work, and should be rewritten to use 'obarray-make'.  Alternatively, you&lt;br/&gt;
can fill the vector with 0.&lt;/p&gt;
&lt;p&gt;*** New function 'obarray-clear' removes all symbols from an obarray.&lt;/p&gt;
&lt;p&gt;*** 'obarray-size' and 'obarray-default-size' are now obsolete.&lt;br/&gt;
They pertained to the internal storage size which is now irrelevant.&lt;/p&gt;
&lt;/blockquote&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dan Christensen</dc:creator><pubDate>Mon, 04 Mar 2024 20:55:09 -0000</pubDate><guid>https://sourceforge.net3eb3fecc4b976535e4784fdc02c38981efa617fb</guid></item><item><title>ps-crypt 1.11 breaks with development version of emacs</title><link>https://sourceforge.net/p/ccrypt/bugs/30/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Ticket 30 has been modified: ps-crypt 1.11 breaks with development version of emacs&lt;br/&gt;
Edited By: Peter Selinger (selinger)&lt;br/&gt;
Status updated: 'open' =&amp;gt; 'closed-fixed'&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dan Christensen</dc:creator><pubDate>Mon, 04 Mar 2024 20:55:09 -0000</pubDate><guid>https://sourceforge.net4318318b3ca720c1b18e1974edbd59752e12db36</guid></item><item><title>#29 Spelling error in manual page</title><link>https://sourceforge.net/p/ccrypt/bugs/29/?limit=50#5ece</link><description>&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;: open --&amp;gt; closed-fixed&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter Selinger</dc:creator><pubDate>Thu, 29 Feb 2024 04:59:11 -0000</pubDate><guid>https://sourceforge.netd544a8b73ba00c348f8c5d365ed7ee9ef932c3e1</guid></item><item><title>#29 Spelling error in manual page</title><link>https://sourceforge.net/p/ccrypt/bugs/29/?limit=50#b48a</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Thanks. This is a duplicate of 0020-man-page-spelling-error.patch in the Debian distribution. Will be fixed in the next release.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter Selinger</dc:creator><pubDate>Thu, 29 Feb 2024 04:58:42 -0000</pubDate><guid>https://sourceforge.neta5dbdd17efb6f5c805f02bb28eaba6badc5868e1</guid></item><item><title>Spelling error in manual page</title><link>https://sourceforge.net/p/ccrypt/bugs/29/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hello Peter,&lt;/p&gt;
&lt;p&gt;the first word in file doc/ccrypt.1.in, line 346 is spelled 'contructed' instead of 'constructed'. Please consider to fix this with the next release of ccrypt.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sven Geuer</dc:creator><pubDate>Wed, 28 Feb 2024 22:00:51 -0000</pubDate><guid>https://sourceforge.net60bb257b5689357efb9c6ca444af6dc8105c02ea</guid></item><item><title>Spelling error in manual page</title><link>https://sourceforge.net/p/ccrypt/bugs/29/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Ticket 29 has been modified: Spelling error in manual page&lt;br/&gt;
Edited By: Peter Selinger (selinger)&lt;br/&gt;
Status updated: 'open' =&amp;gt; 'closed-fixed'&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sven Geuer</dc:creator><pubDate>Wed, 28 Feb 2024 22:00:51 -0000</pubDate><guid>https://sourceforge.net9453388e254d323d03883b5132787881b695a634</guid></item><item><title>#28 Crypt3_check fails with GCC 12</title><link>https://sourceforge.net/p/ccrypt/bugs/28/?limit=25#d799</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi, the ccrypt package was removed from Fedora 38 as compilation fails. Could this be fixed, please?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Marius</dc:creator><pubDate>Fri, 21 Apr 2023 08:18:33 -0000</pubDate><guid>https://sourceforge.net6ff87ca3a44778181ae29d82736298203e3b8276</guid></item></channel></rss>