Thanks again!  I've done this in my .emacs, though your's would be more general:

;; CHICKEN
(defun chicken ()
    "Run Chicken Scheme in an Emacs buffer."
    (interactive)
    (paredit-mode +1)
    (let ((scheme-program-name "/usr/local/bin/csi -:c -R trace"))
        (run-scheme scheme-program-name)))

On Thu, Dec 2, 2010 at 3:05 PM, Mario Domenech Goulart
<[email protected]> wrote:
> On Thu, 2 Dec 2010 14:32:45 -0500 David Dreisigmeyer 
> <[email protected]> wrote:
>
>> Thank you Mario!
>>
>> One more thing: Is it possible to autoload eggs at the command line,
>> so I wouldn't have to do (require-extension trace)?  I have a
>> "chicken" function in my .emacs so it would be nice to be able to
>> handle all of this in that function.
>
> You can add
>
>   (use trace)
>
> to your $HOME/.csirc file (this file is read by csi)
>
> Best wishes.
> Mario
> --
> http://parenteses.org/mario
>

_______________________________________________
Chicken-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to