From 30bb80dde7ca7aa40bf3862750eac8df301ffe99 Mon Sep 17 00:00:00 2001 From: David Botton Date: Thu, 2 Jun 2022 18:55:48 -0400 Subject: [PATCH] tips on using emacs -nw --- MACOS.md | 5 ++++- demos/01-demo.lisp | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/MACOS.md b/MACOS.md index e0996af..d78a529 100644 --- a/MACOS.md +++ b/MACOS.md @@ -40,7 +40,10 @@ sbcl --eval '(ql:quickload :quicklisp-slime-helper)' --quit ``` 8. You can now start emacs graphically or if did option 2 from terminal -and then use M-x slime +using emacs (and if desire terminal version use emacs -nw) and then use M-x slime + +Tip: If using the -nw version in terminal preferances under profiles and under +the default profile choose use option as Meta. 9. Install using slime CLOG: ``` diff --git a/demos/01-demo.lisp b/demos/01-demo.lisp index 9010ab9..49010a2 100644 --- a/demos/01-demo.lisp +++ b/demos/01-demo.lisp @@ -177,5 +177,5 @@ (defun start-demo () "Start demo." - (initialize #'on-new-window) + (initialize 'on-new-window) (open-browser))