Update init.lsp

*NYQ-PATH* is not required (and not currently used).
Use *RUNTIME-PATH* instead (already defined in Nyquist, but not previously documented).
This commit is contained in:
Steve Daulton 2019-12-18 20:28:04 +00:00 committed by GitHub
parent 2c7e08eeec
commit 48b6a9a859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,10 +76,11 @@
(eval-string (quote-string sanitized)))))
;;; Path to Nyquist .lsp files.
(setf *NYQ-PATH* (current-path))
;;; *NYQ-PATH* is not required as path to Nyquist .lsp files
;;; is already defined (but not previously documented) as *runtime-path*
;;(setf *NYQ-PATH* (current-path))
;;; Load wrapper functions for aud-do commands.
;;; If commented out, "aud-do-support.lsp" may be loaded by a plug-in.
;;; Example: (lisp-loader (strcat *NYQ-PATH* "aud-do-support.lsp"))
;;; Example: (lisp-loader (strcat *runtime-path* "aud-do-support.lsp"))
(load "aud-do-support.lsp")