diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-03-20 01:02:52 +0100 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-03-20 01:02:52 +0100 |
commit | 22b398bb4688f123a03994a19e8a089b5662dc03 (patch) | |
tree | 78f53bee7b8bc3118676dc810b4abc382338e6eb | |
parent | 5582968976236c4d61bd2377d076c2db0ea17523 (diff) |
Documentation: Minor fixes.
darcs-hash:e42cc5a94c23ab108f98e00a9a6eb64429db8ecf
-rw-r--r-- | Lisp/libobjcl.lisp | 8 | ||||
-rw-r--r-- | Lisp/parameters.lisp | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/Lisp/libobjcl.lisp b/Lisp/libobjcl.lisp index fab195e..d633480 100644 --- a/Lisp/libobjcl.lisp +++ b/Lisp/libobjcl.lisp @@ -277,8 +277,8 @@ objects or classes, let alone send messages to them. *errorp* --- a **generalized boolean**. -Returns: *class* --- an __objc-class__ object representing the Objective -C class whose name is *class-name*. +Returns: *class* --- an __objective-c-class__ object representing the +Objective C class whose name is *class-name*. ## Description: @@ -309,8 +309,8 @@ __find-objc-class__. ## Examples: - (find-objc-class \"NSObject\") ;=> #<OBJC-CLASS NSObject> - (find-objc-class 'ns-object) ;=> #<OBJC-CLASS NSObject> + (find-objc-class \"NSObject\") ;=> #<NS:+NS-OBJECT NS:NS-OBJECT {B5C1C480}> + (find-objc-class 'ns-object) ;=> #<NS:+NS-OBJECT NS:NS-OBJECT {B5C1C480}> (find-objc-class 'nsobject) ;=> NIL diff --git a/Lisp/parameters.lisp b/Lisp/parameters.lisp index a26908b..14a3f16 100644 --- a/Lisp/parameters.lisp +++ b/Lisp/parameters.lisp @@ -64,17 +64,17 @@ Objective-CL. \(With __install-reader-syntax__ enabled.) - (defvar *tmp*) - (setq *trace-method-calls* t) + (defvar \\*tmp\\*) + (setq \\*trace-method-calls\\* t) - (setq *tmp* [NSString new]) + (setq \\*tmp\\* [NSString new]) ; Invoking [new]. - (setq *tmp* [NSString string]) + (setq \\*tmp\\* [NSString string]) ; Invoking [string]. ; Invoking [retain]. - (setq *tmp* nil) + (setq \\*tmp\\* nil) (gc :full t) ; Invoking [release]. ; Invoking [release]. |