diff options
| author | Sean Whitton | 2025-10-24 20:53:25 +0100 |
|---|---|---|
| committer | Sean Whitton | 2025-10-24 20:53:25 +0100 |
| commit | 68e07ef8b22f69e21ca3aa4fca5ef86a7cf0707f (patch) | |
| tree | 2264b54f64dbeb877945bfbaad507bc2e2462e04 | |
| parent | 8ad494fc766978ba13abc709f3ac9cdaf186eb23 (diff) | |
| download | emacs-68e07ef8b22f69e21ca3aa4fca5ef86a7cf0707f.tar.gz emacs-68e07ef8b22f69e21ca3aa4fca5ef86a7cf0707f.zip | |
; * lisp/custom.el (custom-initialize-after-file-load): Fix docs.
| -rw-r--r-- | lisp/custom.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index 69d09d9e293..7590351bfd6 100644 --- a/lisp/custom.el +++ b/lisp/custom.el | |||
| @@ -162,8 +162,8 @@ the :set function." | |||
| 162 | 162 | ||
| 163 | (defun custom-initialize-after-file-load (symbol value) | 163 | (defun custom-initialize-after-file-load (symbol value) |
| 164 | "Delay initialization to after the current file is loaded. | 164 | "Delay initialization to after the current file is loaded. |
| 165 | This is handy when the initialization needs functions defined after the variable, | 165 | This is handy when the initialization needs functions defined after the |
| 166 | such as for global minor modes." | 166 | variable, such as for global minor modes." |
| 167 | ;; Defvar it so as to mark it special, etc (bug#25770). | 167 | ;; Defvar it so as to mark it special, etc (bug#25770). |
| 168 | (internal--define-uninitialized-variable symbol) | 168 | (internal--define-uninitialized-variable symbol) |
| 169 | 169 | ||