aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/debugging.texi
diff options
context:
space:
mode:
authorStefan Monnier2000-12-04 16:15:18 +0000
committerStefan Monnier2000-12-04 16:15:18 +0000
commit00c804d5e6f5abdfa2d8d024d923e5263554717d (patch)
tree4645c6b346c170806d08ef85f434e8b966c3c165 /lispref/debugging.texi
parent01ad4eacc25023f25ae95f2b135da8d5e64c0b1d (diff)
downloademacs-00c804d5e6f5abdfa2d8d024d923e5263554717d.tar.gz
emacs-00c804d5e6f5abdfa2d8d024d923e5263554717d.zip
Don't quote lambdas.
Diffstat (limited to 'lispref/debugging.texi')
-rw-r--r--lispref/debugging.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/debugging.texi b/lispref/debugging.texi
index d8b465a29cb..50f5b615625 100644
--- a/lispref/debugging.texi
+++ b/lispref/debugging.texi
@@ -153,7 +153,7 @@ this:
153 153
154@example 154@example
155(add-hook 'after-init-hook 155(add-hook 'after-init-hook
156 '(lambda () (setq debug-on-error t))) 156 (lambda () (setq debug-on-error t)))
157@end example 157@end example
158 158
159@node Infinite Loops 159@node Infinite Loops