diff options
| -rw-r--r-- | generic/texi-docstring-magic.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/generic/texi-docstring-magic.el b/generic/texi-docstring-magic.el index 9258ee62..06bb5ad8 100644 --- a/generic/texi-docstring-magic.el +++ b/generic/texi-docstring-magic.el @@ -248,6 +248,8 @@ including any whitespace included to delimit matches.") (defun texi-docstring-magic-format-default (default) "Make a default value string for the value DEFAULT. Markup as @code{stuff} or @lisp stuff @end lisp." + ;; NB: might be nice to use a 'default-value-description + ;; property here, in case the default value is computed. (let ((text (format "%S" default))) (concat "\nThe default value is " |
