diff options
author | Moritz Schulte <[email protected]> | 2008-11-10 19:18:28 +0000 |
---|---|---|
committer | Moritz Schulte <[email protected]> | 2008-11-10 19:18:28 +0000 |
commit | f9abf8f0602aa1f0b9e0ebfb7bd814830b1a88c7 (patch) | |
tree | 7cafc2e3ab206726ad32656d71e5607fab8602dc | |
parent | 2008-10-29 Marcus Brinkmann <[email protected]> (diff) | |
download | libgpg-error-f9abf8f0602aa1f0b9e0ebfb7bd814830b1a88c7.tar.gz libgpg-error-f9abf8f0602aa1f0b9e0ebfb7bd814830b1a88c7.zip |
2008-11-08 Moritz <[email protected]>
* 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.
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | lang/cl/gpg-error.lisp | 9 |
2 files changed, 12 insertions, 6 deletions
@@ -1,3 +1,12 @@ +2008-11-08 Moritz <[email protected]> + + * 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 <[email protected]> * src/mkstrtable.awk: Make generated code -W clean to silence gcc diff --git a/lang/cl/gpg-error.lisp b/lang/cl/gpg-error.lisp index c0948be..cad2532 100644 --- a/lang/cl/gpg-error.lisp +++ b/lang/cl/gpg-error.lisp @@ -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. |