aboutsummaryrefslogtreecommitdiff
path: root/lib/texi-docstring-magic.el
diff options
context:
space:
mode:
authorStefan Monnier2012-08-30 14:30:23 +0000
committerStefan Monnier2012-08-30 14:30:23 +0000
commit0d0af3dcce3a9b29d9c33c4cee34ca5249713904 (patch)
treed6b509f668043da0875b8700fd45fca440fc7d7b /lib/texi-docstring-magic.el
parent8debcb21e749931c38bd791fef4b0b29b87132c8 (diff)
Summary: Don't quote lambda expressions
* coq/coq-indent.el (coq-indent-inner-regexp): Remove old X-Symbol element. (coq-save-count, coq-proof-count): * obsolete/plastic/plastic.el (plastic-shell-handle-output): * lib/texi-docstring-magic.el (texi-docstring-magic-insert-magic): * lib/pg-dev.el (emacs-lisp-mode-hook): * lib/maths-menu.el (maths-menu-filter-predicate) (maths-menu-tokenise-insert): * lib/holes.el (holes-next): * lego/lego.el (lego-shell-handle-output): * isar/isabelle-system.el (isabelle-docs-menu): * coq/coq.el (coq-compile-command, coq-compile-auto-save) (coq-compile-ignored-directories, coq-load-path-safep) (proof-shell-handle-delayed-output-hook): Don't quote lambda.
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)))