From d11f881a676d1a2c99fac609ec7a6442394ee9de Mon Sep 17 00:00:00 2001 From: Matthias Benkard Date: Wed, 5 Mar 2008 14:23:12 +0100 Subject: Document DISABLE-METHOD-SYNTAX and DISABLE-OBJECTIVE-C-SYNTAX. darcs-hash:be718221954670a673eb722f4c53c07addde614d --- Lisp/reader-syntax.lisp | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) (limited to 'Lisp') diff --git a/Lisp/reader-syntax.lisp b/Lisp/reader-syntax.lisp index a01e5d7..7416a30 100644 --- a/Lisp/reader-syntax.lisp +++ b/Lisp/reader-syntax.lisp @@ -96,7 +96,17 @@ __selector__s registered by way of __collect-methods__. (defun disable-method-syntax () - "FIXME" + "Disable the **reader macro** installed by __enable-method-syntax__. + +## Description: + +__enable-method-syntax__ and friends save the **readtable** before +altering it. __disable-method-syntax__ restores the saved state. + + +## See also: + + __enable-method-c-syntax__, __disable-objective-c-syntax__" (restore-readtable) #+(or) (when *method-syntax-macro-chars* (let ((macro-char (pop *method-syntax-macro-chars*))) @@ -245,7 +255,17 @@ __enable-method-syntax__" (defun disable-objective-c-syntax () - "FIXME" + "Disable the **reader macro** installed by __enable-objective-c-syntax__. + +## Description: + +__enable-objective-c-syntax__ and friends save the **readtable** before +altering it. __disable-objective-c-syntax__ restores the saved state. + + +## See also: + + __enable-objective-c-syntax__, __disable-method-syntax__" (restore-readtable) #+(or) (when *bracket-syntax-macro-chars* (destructuring-bind (open . close) -- cgit v1.2.3