newLISP Fan Club

Forum => newLISP in the real world => Topic started by: newdep on February 27, 2004, 04:24:46 PM

Title: 5 Cents tip for today [ help ]
Post by: newdep on February 27, 2004, 04:24:46 PM
If under linux or Bsd you want a help started, use the "init.lsp" file.

a simple edit like below will give you a direct local help.



;; start links web-browser and loads the manual

;; a function called (help) is now global

(define-macro (help)

        ( ! "/usr/local/bin/links /usr/share/doc/newlisp/newlisp_manual.html" )

        (global 'help))



Norman.
Title:
Post by: newdep on March 01, 2004, 10:11:42 AM
* tuned version, caused by good defined html help page ;-)

* i.e.  (help map) or (help net-accept)



;; loads the manual for unix

;; usage: (help function)



(if (< (last (sys-info)) 5)

        (begin

        (define-macro (help _func)

        (!  (string (append "/usr/local/bin/links /usr/share/doc/newlisp/newlisp_manual.html#" (string _func) )) )

        (global 'help))))
Title:
Post by: newdep on March 01, 2004, 10:33:53 AM
One disadvantage of the (help) is that the special functions like <>!@# must

be converted to html, so the (help <)..etc will fail for now...



Norman.