summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorMoritz Schulte <mo@g10code.com>2008-11-10 19:18:28 +0000
committerMoritz Schulte <mo@g10code.com>2008-11-10 19:18:28 +0000
commitf9abf8f0602aa1f0b9e0ebfb7bd814830b1a88c7 (patch)
tree7cafc2e3ab206726ad32656d71e5607fab8602dc /lang
parent2eb77a5c5789b79d4d4e37916d9235f5b004f018 (diff)
downloadlibgpg-error-f9abf8f0602aa1f0b9e0ebfb7bd814830b1a88c7.tar.gz
2008-11-08 Moritz <moritz@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.
Diffstat (limited to 'lang')
-rw-r--r--lang/cl/gpg-error.lisp9
1 files changed, 3 insertions, 6 deletions
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.