diff options
| author | Stefan Kangas | 2021-12-06 03:18:34 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2021-12-06 03:20:15 +0100 |
| commit | 2a73a52c4aa8b6a53c9ce3cd68e464bcd0d08d29 (patch) | |
| tree | e61fe60a32e625618dae99f8918d195160913996 | |
| parent | 9171061352a019acd5a4d6fef36cddfd78cf4ac1 (diff) | |
| download | emacs-2a73a52c4aa8b6a53c9ce3cd68e464bcd0d08d29.tar.gz emacs-2a73a52c4aa8b6a53c9ce3cd68e464bcd0d08d29.zip | |
; Small doc fix in recent eieio-opt.el change
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor): Quote
functions to make links work in help-mode.
| -rw-r--r-- | lisp/emacs-lisp/eieio-opt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/eieio-opt.el b/lisp/emacs-lisp/eieio-opt.el index 3297a9d2ec7..680395387c2 100644 --- a/lisp/emacs-lisp/eieio-opt.el +++ b/lisp/emacs-lisp/eieio-opt.el | |||
| @@ -130,7 +130,7 @@ are not abstract." | |||
| 130 | ;;;###autoload | 130 | ;;;###autoload |
| 131 | (defun eieio-help-constructor (ctr) | 131 | (defun eieio-help-constructor (ctr) |
| 132 | "Describe CTR if it is a class constructor." | 132 | "Describe CTR if it is a class constructor." |
| 133 | (declare (obsolete "use describe-function or cl--describe-class" "29.1")) | 133 | (declare (obsolete "use `describe-function' or `cl--describe-class'." "29.1")) |
| 134 | (when (class-p ctr) | 134 | (when (class-p ctr) |
| 135 | (erase-buffer) | 135 | (erase-buffer) |
| 136 | (let ((location (find-lisp-object-file-name ctr 'define-type)) | 136 | (let ((location (find-lisp-object-file-name ctr 'define-type)) |