aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/texi-docstring-magic.el
diff options
context:
space:
mode:
Diffstat (limited to 'lib/texi-docstring-magic.el')
-rw-r--r--lib/texi-docstring-magic.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/texi-docstring-magic.el b/lib/texi-docstring-magic.el
index d9791cfd..6e8c8e49 100644
--- a/lib/texi-docstring-magic.el
+++ b/lib/texi-docstring-magic.el
@@ -389,10 +389,10 @@ With prefix arg, no errors on unknown symbols. (This results in
(if v
(format "Magic docstring for symbol (default %s): " v)
"Magic docstring for symbol: ")
- obarray '(lambda (sym)
- (or (boundp sym)
- (fboundp sym)
- (texi-docstring-magic-find-face sym)))
+ obarray (lambda (sym)
+ (or (boundp sym)
+ (fboundp sym)
+ (texi-docstring-magic-find-face sym)))
t nil 'variable-history))))
(list (if (equal val "") v (intern val)))))
(insert "\n" texi-docstring-magic-comment " " (symbol-name symbol)))