Your message dated Sun, 13 Oct 2013 09:51:59 +0000 with message-id <[email protected]> and subject line Bug#726023: Removed package(s) from unstable has caused the Debian Bug report #513574, regarding crypt++el: broken crypt-encryption-type-get function to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 513574: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=513574 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: crypt++el Version: 2.94-1 Severity: normal The reason that crypt++el does not ever notice file extensions is because its file extension function is broken: (defun crypt-encryption-type-get (file) "Determine type of encryption from file extension." (let (ret regexp) (dolist (elt crypt-encryption-alist) (setq regexp (nth 3 elt)) (if (and (stringp regexp) (string-match regexp file)) (nth 0 elt))))) Do you see the problem? The (if ...) statement has no effect; even if the filename matches the regular expression, it just computes a value, then throws it out and lets the (dolist ...) loop continue to execute. To make the function actually stop with the answer about what kind of file I've just opened, the function's last line needs to be changed to: (return (nth 0 elt)))))) I've just tested this on my Debian unstable box, with emacs 22.2+2-5, and it makes crypt++.el start working just fine. Or, at least, it works fine for everything I use it for. :-)
--- End Message ---
--- Begin Message ---Version: 2009.02.17.dfsg.1-1+rm Dear submitter, as the package xemacs21-packages has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see http://bugs.debian.org/726023 The version of this package that was in Debian prior to this removal can still be found using http://snapshot.debian.org/. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]. Debian distribution maintenance software pp. Ansgar Burchardt (the ftpmaster behind the curtain)
--- End Message ---

