]> git.eshelyaron.com Git - sweep.git/commitdiff
Refine "Getting Started" section of the manual
authorEshel Yaron <me@eshelyaron.com>
Mon, 21 Aug 2023 17:56:06 +0000 (19:56 +0200)
committerEshel Yaron <me@eshelyaron.com>
Mon, 21 Aug 2023 17:56:06 +0000 (19:56 +0200)
* README.org (Getting Started): Refine.
* sweep.doc (Installation, Getting Started): Update.

README.org
sweep.doc

index 2daaa77b93f4db69df5f1bdb8048762bbf59cb95..171ea486ddfa0a4209197b993b08812bf3cd6f4a 100644 (file)
@@ -166,16 +166,17 @@ the variable ~sweeprolog-swipl-path~ to point to it:
   (setq sweeprolog-swipl-path "/path/to/swipl")
 #+end_src
 
-All set!  =sweeprolog= automatically loads =sweep-module= and initializes
-the embedded SWI-Prolog runtime.  For a description of the different
-features of Sweep, see the following sections of this manual.
-
-_Important note for Linux users_: prior to version 29, Emacs would load
-dynamic modules in a way that is not fully compatible with the way the
-SWI-Prolog native library, =libswipl=, loads its own native extensions.
-This may lead to Sweep failing after loading =sweep-module=.  To work
-around this issue, users running Emacs 28 or earlier on Linux can
-start Emacs with =libswipl= loaded upfront via =LD_PRELOAD=, for example:
+All set!  You can now use Sweep for Prolog development ([[#editing-prolog-code][Editing Prolog code]]) and
+for integrating Prolog into your Emacs Lisp code ([[#querying-prolog][Querying Prolog]]).  In the next
+section ([[#discovering-sweep][Discovering Sweep]]) you'll find some useful tips for learning to work
+with Sweep.
+
+_Important note for Linux users_: prior to version 29, Emacs would load dynamic
+modules in a way that is not fully compatible with the way the SWI-Prolog native
+library, =libswipl=, loads its own native extensions.  This may lead to Sweep
+failing after loading =sweep-module= ([[#high-level-architecture][High-level Architecture]]).  To work around
+this issue, users running Emacs 28 or earlier on Linux can start Emacs with
+=libswipl= loaded upfront via =LD_PRELOAD=, for example:
 
 #+begin_src sh
   LD_PRELOAD=/usr/local/lib/libswipl.so emacs
index c5ea0021d3244560ce1f19c7f1b38cdad07d4102..08931375b12b7015272f3a6f3ee1008ea1db65d4 100644 (file)
--- a/sweep.doc
+++ b/sweep.doc
 
 \section{Installation}
 \label{sec:sweep-installation}
+Installing Sweep requires:
 
-The \texttt{sweeprolog} Elisp package is available on NonGNU ELPA, to
-install \texttt{sweeprolog} simply open Emacs and type \texttt{M-x
-  package-install RET sweeprolog RET}.
+\begin{itemize}
+\item Emacs 27 or later, and
+\item SWI-Prolog 8.5.18 or later.
+\end{itemize}
 
-An alternative to installing from ELPA is to get the Elisp library
-from the \texttt{sweep} Git repository:
+Sweep is available from NonGNU ELPA, to install it simply type in
+Emacs \texttt{M-x package-install RET sweeprolog RET}.
 
-\begin{enumerate}
-\item Clone the \texttt{sweep} repository:
-  \begin{code}
-    git clone https://git.sr.ht/~eshel/sweep
-  \end{code}
+Note that in Emacs prior to version 28, you need to explicitly enable
+NonGNU ELPA by adding something like the following to your Emacs
+configuration:
 
-  Or:
-
-  \begin{code}
-    git clone https://github.com/SWI-Prolog/packages-sweep sweep
-  \end{code}
-
-\item Add \texttt{sweep} to Emacs' \texttt{load-path}:
-  \begin{code}
-    (add-to-list 'load-path "/path/to/sweep")
-  \end{code}
-\end{enumerate}
+\begin{code}
+  (with-eval-after-load 'package
+    (add-to-list 'package-archives '("nongnu" . "https://elpa.nongnu.org/nongnu/")))
+\end{code}
 
 \section{Getting started}
 \label{sec:sweep-getting-started}
@@ -66,23 +59,10 @@ Emacs:
   (require 'sweeprolog)
 \end{code}
 
-All set!  \texttt{sweeprolog} automatically loads
-\texttt{sweep-module} and initializes the embedded SWI-Prolog runtime.
-For a full description of the different features of \texttt{sweep},
-see \href{https://eshelyaron.com/sweep.html}{the \texttt{sweep}
-  manual}.
-
-\textit{Important note for Linux users}: prior to version 29, Emacs
-would load dynamic modules in a way that is not fully compatible with
-the way the SWI-Prolog native library, \texttt{libswipl}, loads its
-own native extensions.  This may lead to \texttt{sweep} failing after
-loading \texttt{sweep-module}.  To work around this issue, users
-running Emacs 28 or earlier on Linux can start Emacs with
-\texttt{libswipl} loaded upfront via \texttt{LD_PRELOAD}, for example:
-
-\begin{code}
-  LD_PRELOAD=/usr/local/lib/libswipl.so emacs
-\end{code}
+All set!  You can now use Sweep for Prolog development and for
+integrating Prolog into your Emacs Lisp code.  For a full description
+of the different features of \texttt{sweep}, see
+\href{https://eshelyaron.com/sweep.html}{the Sweep manual}.
 
 \printindex