aboutsummaryrefslogtreecommitdiff
path: root/generic/texi-docstring-magic.el
diff options
context:
space:
mode:
Diffstat (limited to 'generic/texi-docstring-magic.el')
-rw-r--r--generic/texi-docstring-magic.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/texi-docstring-magic.el b/generic/texi-docstring-magic.el
index 3b8b58c2..05e125f5 100644
--- a/generic/texi-docstring-magic.el
+++ b/generic/texi-docstring-magic.el
@@ -142,8 +142,7 @@ 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."
- (let ((text (format "%S" default))
- (isstringg (stringp default)))
+ (let ((text (format "%S" default)))
(concat
"\nThe default value is "
(if (string-match "\n" text)