[svn] gpg-error - r207 - in trunk: . lang/cl
svn author mo
cvs at cvs.gnupg.org
Mon Nov 10 20:18:28 CET 2008
Author: mo
Date: 2008-11-10 20:18:28 +0100 (Mon, 10 Nov 2008)
New Revision: 207
Modified:
trunk/ChangeLog
trunk/lang/cl/gpg-error.lisp
Log:
2008-11-08 Moritz <moritz at gnu.org>
* lang/cl/gpg-error.lisp ("gpg_err_code_from_syserror"): Fix
defcfun: removed "(void)".
* lang/cl/gpg-error.lisp (size-t): Wrong call to defctype:
function accepts optional, not keyword argument.
(gpg-error-t): Likewise.
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-10-29 12:52:44 UTC (rev 206)
+++ trunk/ChangeLog 2008-11-10 19:18:28 UTC (rev 207)
@@ -1,3 +1,12 @@
+2008-11-08 Moritz <moritz at gnu.org>
+
+ * lang/cl/gpg-error.lisp ("gpg_err_code_from_syserror"): Fix
+ defcfun: removed "(void)".
+
+ * lang/cl/gpg-error.lisp (size-t): Wrong call to defctype:
+ function accepts optional, not keyword argument.
+ (gpg-error-t): Likewise.
+
2008-10-29 Marcus Brinkmann <marcus at g10code.de>
* src/mkstrtable.awk: Make generated code -W clean to silence gcc
Modified: trunk/lang/cl/gpg-error.lisp
===================================================================
--- trunk/lang/cl/gpg-error.lisp 2008-10-29 12:52:44 UTC (rev 206)
+++ trunk/lang/cl/gpg-error.lisp 2008-11-10 19:18:28 UTC (rev 207)
@@ -31,8 +31,7 @@
;;; System dependencies.
-(defctype size-t :unsigned-int
- :documentation "The system size_t type.")
+(defctype size-t :unsigned-int "The system size_t type.")
;;; Error sources.
@@ -62,8 +61,7 @@
;;; libgpg-error-codes.lisp is loaded by ASDF.
-(defctype gpg-error-t :unsigned-int
- :documentation "The GPG error code type.")
+(defctype gpg-error-t :unsigned-int "The GPG error code type.")
;;; Bit mask manipulation constants.
@@ -111,8 +109,7 @@
(code gpg-err-code-t))
(defcfun ("gpg_err_code_from_syserror"
- c-gpg-err-code-from-syserror) gpg-err-code-t
- (void))
+ c-gpg-err-code-from-syserror) gpg-err-code-t)
;;; Self-documenting convenience functions.
More information about the Gnupg-commits
mailing list