|
From: Sam S. <sd...@gn...> - 2017-02-08 17:33:16
|
> * Will Senn <jvy...@tz...> [2017-02-07 15:34:00 -0600]:
>
> That fixed the hang up, here's the results:
>
> [1]> (setq sys::*disassemble-use-live-process* nil)
>
> ** - Continuable Error
> SETQ(SYSTEM::*DISASSEMBLE-USE-LIVE-PROCESS*): #<PACKAGE SYSTEM> is locked
> If you continue (by typing 'continue'): Ignore the lock and proceed
> The following restarts are also available:
> ABORT :R1 Abort main loop
> Break 1 [2]> continue
> NIL
> [3]> (DISASSEMBLE #'SYMBOL-NAME)
> /tmp/gdbcomm86569:3: Error in sourced command file:
> No function contains specified address.
> NIL
>
> How can I get the variable, sys::*disassemble-use-live-process*, set
> "permanently"?
put this into your ~/.clisprc.lisp :
--8<---------------cut here---------------start------------->8---
(without-package-lock ("SYS")
(setq sys::*disassemble-use-live-process* nil))
--8<---------------cut here---------------end--------------->8---
see http://clisp.org/impnotes/clisp.html#opt-norc
http://clisp.org/impnotes/pack-lock.html
--
Sam Steingold (http://sds.podval.org/) on darwin Ns 10.3.1504
http://steingoldpsychology.com http://www.childpsy.net https://ffii.org
http://thereligionofpeace.com http://islamexposedonline.com
If I had a $ for every time I was rejected, I would no longer be rejected.
|