diff options
| author | Stefan Kangas | 2022-10-31 15:28:36 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2022-10-31 15:28:36 +0100 |
| commit | b250f89e63a135e04e61d66e1a83ff6d3c609e2c (patch) | |
| tree | 76132fbc7981117d3d69faf23791edf04c780fbd | |
| parent | 20d9b4023571a0a34565a0dc326533224bd8e6dd (diff) | |
| download | emacs-b250f89e63a135e04e61d66e1a83ff6d3c609e2c.tar.gz emacs-b250f89e63a135e04e61d66e1a83ff6d3c609e2c.zip | |
* lisp/emacs-lisp/multisession.el: Add Commentary. (Bug#58845)
| -rw-r--r-- | lisp/emacs-lisp/multisession.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/multisession.el b/lisp/emacs-lisp/multisession.el index d6f1ab98faa..9d6e8c0d88d 100644 --- a/lisp/emacs-lisp/multisession.el +++ b/lisp/emacs-lisp/multisession.el | |||
| @@ -19,7 +19,18 @@ | |||
| 19 | 19 | ||
| 20 | ;;; Commentary: | 20 | ;;; Commentary: |
| 21 | 21 | ||
| 22 | ;; This library provides multisession variables for Emacs Lisp, to | ||
| 23 | ;; make them persist between sessions. | ||
| 22 | ;; | 24 | ;; |
| 25 | ;; Use `define-multisession-variable' to define a multisession | ||
| 26 | ;; variable, and `multisession-value' to read its value. Use | ||
| 27 | ;; `list-multisession-values' to list multisession variables. | ||
| 28 | ;; | ||
| 29 | ;; Users might want to customize `multisession-storage' and | ||
| 30 | ;; `multisession-directory'. | ||
| 31 | ;; | ||
| 32 | ;; See Info node `(elisp) Multisession Variables' for more | ||
| 33 | ;; information. | ||
| 23 | 34 | ||
| 24 | ;;; Code: | 35 | ;;; Code: |
| 25 | 36 | ||