Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
00c804d5
Commit
00c804d5
authored
Dec 04, 2000
by
Stefan Monnier
Browse files
Don't quote lambdas.
parent
01ad4eac
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
lispref/debugging.texi
lispref/debugging.texi
+1
-1
lispref/functions.texi
lispref/functions.texi
+2
-2
No files found.
lispref/debugging.texi
View file @
00c804d5
...
...
@@ -153,7 +153,7 @@ this:
@example
(add-hook 'after-init-hook
'
(lambda () (setq debug-on-error t)))
(lambda () (setq debug-on-error t)))
@end example
@node Infinite Loops
...
...
lispref/functions.texi
View file @
00c804d5
...
...
@@ -809,7 +809,7 @@ anonymous function. Such a list is valid wherever a function name is.
@smallexample
@group
(setq silly (append
'
(lambda (x)) (list (list '+ (* 3 4) 'x))))
(setq silly (append (lambda (x)) (list (list '+ (* 3 4) 'x))))
@result{} (lambda (x) (+ 12 x))
@end group
@end smallexample
...
...
@@ -856,7 +856,7 @@ passing it a function to double a number:
@example
@group
(defun double-property (symbol prop)
(change-property symbol prop
'
(lambda (x) (* 2 x))))
(change-property symbol prop (lambda (x) (* 2 x))))
@end group
@end example
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment