Remove #' and function quoting from lambda forms in manual
* doc/lispref/abbrevs.texi (Abbrev Expansion): * doc/lispref/backups.texi (Reverting): * doc/lispref/functions.texi (Mapping Functions): * doc/lispref/help.texi (Accessing Documentation): * doc/lispref/sequences.texi (Char-Tables): * doc/lispref/syntax.texi (Categories): * doc/lispref/text.texi (Sorting): Remove function quoting from lambda in examples where it still occurs, since examples should follow our best style and be consistent.
This commit is contained in:
parent
d5ec18c66b
commit
14a570afae
7 changed files with 47 additions and 50 deletions
|
@ -370,7 +370,7 @@ definitions of @code{local-abbrev-table} and @code{text-mode-abbrev-table}.
|
||||||
(funcall expand))))
|
(funcall expand))))
|
||||||
|
|
||||||
(add-hook 'foo-mode-hook
|
(add-hook 'foo-mode-hook
|
||||||
#'(lambda ()
|
(lambda ()
|
||||||
(add-function :around (local 'abbrev-expand-function)
|
(add-function :around (local 'abbrev-expand-function)
|
||||||
#'foo-mode-abbrev-expand-function)))
|
#'foo-mode-abbrev-expand-function)))
|
||||||
@end smallexample
|
@end smallexample
|
||||||
|
|
|
@ -807,7 +807,7 @@ If you just want to automatically auto-revert every
|
||||||
|
|
||||||
@example
|
@example
|
||||||
(setq-local buffer-stale-function
|
(setq-local buffer-stale-function
|
||||||
#'(lambda (&optional noconfirm) 'fast))
|
(lambda (&optional noconfirm) 'fast))
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
@noindent
|
@noindent
|
||||||
|
|
|
@ -970,7 +970,7 @@ string.
|
||||||
@end group
|
@end group
|
||||||
|
|
||||||
@group
|
@group
|
||||||
(mapconcat (function (lambda (x) (format "%c" (1+ x))))
|
(mapconcat (lambda (x) (format "%c" (1+ x)))
|
||||||
"HAL-8000"
|
"HAL-8000"
|
||||||
"")
|
"")
|
||||||
@result{} "IBM.9111"
|
@result{} "IBM.9111"
|
||||||
|
|
|
@ -175,7 +175,6 @@ All symbols that have PATTERN in their name are described
|
||||||
in the *Help* buffer."
|
in the *Help* buffer."
|
||||||
(interactive "sDescribe symbols matching: ")
|
(interactive "sDescribe symbols matching: ")
|
||||||
(let ((describe-func
|
(let ((describe-func
|
||||||
(function
|
|
||||||
(lambda (s)
|
(lambda (s)
|
||||||
@end group
|
@end group
|
||||||
@group
|
@group
|
||||||
|
@ -208,16 +207,15 @@ in the *Help* buffer."
|
||||||
@group
|
@group
|
||||||
(or (documentation-property
|
(or (documentation-property
|
||||||
s 'variable-documentation)
|
s 'variable-documentation)
|
||||||
"not documented")))))))
|
"not documented"))))))
|
||||||
sym-list)
|
sym-list)
|
||||||
@end group
|
@end group
|
||||||
|
|
||||||
@group
|
@group
|
||||||
;; @r{Build a list of symbols that match pattern.}
|
;; @r{Build a list of symbols that match pattern.}
|
||||||
(mapatoms (function
|
(mapatoms (lambda (sym)
|
||||||
(lambda (sym)
|
|
||||||
(if (string-match pattern (symbol-name sym))
|
(if (string-match pattern (symbol-name sym))
|
||||||
(setq sym-list (cons sym sym-list))))))
|
(setq sym-list (cons sym sym-list)))))
|
||||||
@end group
|
@end group
|
||||||
|
|
||||||
@group
|
@group
|
||||||
|
|
|
@ -1572,7 +1572,7 @@ For example, here is how to examine the elements of the syntax table:
|
||||||
@example
|
@example
|
||||||
(let (accumulator)
|
(let (accumulator)
|
||||||
(map-char-table
|
(map-char-table
|
||||||
#'(lambda (key value)
|
(lambda (key value)
|
||||||
(setq accumulator
|
(setq accumulator
|
||||||
(cons (list
|
(cons (list
|
||||||
(if (consp key)
|
(if (consp key)
|
||||||
|
|
|
@ -1118,7 +1118,7 @@ bidi-class}).
|
||||||
;; 'bidi-class' Unicode property is R, AL, or RLO --
|
;; 'bidi-class' Unicode property is R, AL, or RLO --
|
||||||
;; these have a right-to-left directionality.
|
;; these have a right-to-left directionality.
|
||||||
(map-char-table
|
(map-char-table
|
||||||
#'(lambda (key val)
|
(lambda (key val)
|
||||||
(if (memq val '(R AL RLO))
|
(if (memq val '(R AL RLO))
|
||||||
(modify-category-entry key ?R category-table)))
|
(modify-category-entry key ?R category-table)))
|
||||||
uniprop-table)
|
uniprop-table)
|
||||||
|
|
|
@ -2073,11 +2073,10 @@ its @code{sort-subr} call looks like this:
|
||||||
@example
|
@example
|
||||||
@group
|
@group
|
||||||
(sort-subr reverse
|
(sort-subr reverse
|
||||||
(function
|
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(while (and (not (eobp))
|
(while (and (not (eobp))
|
||||||
(looking-at paragraph-separate))
|
(looking-at paragraph-separate))
|
||||||
(forward-line 1))))
|
(forward-line 1)))
|
||||||
'forward-paragraph)
|
'forward-paragraph)
|
||||||
@end group
|
@end group
|
||||||
@end example
|
@end example
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue