[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/site-lisp 40cc33c649 1/2: Rewrite the Commentary sectio
From: |
ELPA Syncer |
Subject: |
[elpa] externals/site-lisp 40cc33c649 1/2: Rewrite the Commentary section |
Date: |
Tue, 3 Oct 2023 03:59:06 -0400 (EDT) |
branch: externals/site-lisp
commit 40cc33c649dfde86dca16f8fff67ec8b5df587c1
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>
Rewrite the Commentary section
---
site-lisp.el | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/site-lisp.el b/site-lisp.el
index c324d397d0..da444be110 100644
--- a/site-lisp.el
+++ b/site-lisp.el
@@ -24,13 +24,17 @@
;;; Commentary:
-;; The following code manages local Lisp code, that might not be part
-;; of a package. For regular use, create a "site-lisp" directory next
-;; to "init.el", and create a file subdirectory for every script you
-;; wish to have loaded.
-;;
-;; Use `site-lisp-reload' after adding a new script to avoid
-;; restarting Emacs.
+;; This package automates the management of local Lisp code. Similar
+;; to package.el, it will byte-compile files, scrape for autoload
+;; cookies and update the `load-path', but "installing" a package just
+;; involves placing a file or a directory into a "site-lisp"
+;; directory, inside your Emacs configuration directory (see
+;; `site-lisp-directory' if you wish to modify this behaviour).
+
+;; New files will automatically be registered when
+;; `site-lisp-initialise' is invoked (the function is autoloaded, so
+;; you can add it directly to your init.el), but you can invoke the
+;; command `site-lisp-reload' at any time to avoid restarting Emacs.
;;; News: