Skip to content

Commit

Permalink
In webactions clp functions will be named
Browse files Browse the repository at this point in the history
Functions defined with def-clp-function will now have a name
like (:clp "mymod_myfun") which will make it easier to
distinguish them in a backtrace when debugging.

Are there user visible changes in this commit?  yes/no

Is bootstrapping needed?   no

Are tests included for new features?  no new features

Tests run:  t-aserve, t-webactions

Change-Id: I03c8855570f0e1051ede79770935dbf5dea06fc0
  • Loading branch information
John Foderaro committed Dec 28, 2011
1 parent 54adb6e commit 66f6232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webactions/clpage.cl
Expand Up @@ -780,7 +780,7 @@ to separate the module part from the function name part, ~s doesn't" name))

`(setf (gethash ,function
(find-clp-module ,module :create t))
#'(lambda ,args ,@body))))
(named-function (:clp ,name) (lambda ,args ,@body)))))



Expand Down

0 comments on commit 66f6232

Please sign in to comment.