summaryrefslogtreecommitdiff
path: root/doc/lispref/syntax.texi
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2020-04-19 12:40:43 +0200
committerMattias EngdegÄrd <mattiase@acm.org>2020-04-19 13:19:37 +0200
commit14a570afaeb9c01bafdb5dd922d8077810e63d16 (patch)
treeee86dfe4f4aa4e6c12ae8d9c963b95f788890e4a /doc/lispref/syntax.texi
parentd5ec18c66bdefb492826eab0d60e818d5bac7238 (diff)
downloademacs-14a570afaeb9c01bafdb5dd922d8077810e63d16.tar.gz
emacs-14a570afaeb9c01bafdb5dd922d8077810e63d16.tar.bz2
emacs-14a570afaeb9c01bafdb5dd922d8077810e63d16.zip
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.
Diffstat (limited to 'doc/lispref/syntax.texi')
-rw-r--r--doc/lispref/syntax.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi
index ad45a8edaff..9eb99a0ac92 100644
--- a/doc/lispref/syntax.texi
+++ b/doc/lispref/syntax.texi
@@ -1118,9 +1118,9 @@ bidi-class}).
;; 'bidi-class' Unicode property is R, AL, or RLO --
;; these have a right-to-left directionality.
(map-char-table
- #'(lambda (key val)
- (if (memq val '(R AL RLO))
- (modify-category-entry key ?R category-table)))
+ (lambda (key val)
+ (if (memq val '(R AL RLO))
+ (modify-category-entry key ?R category-table)))
uniprop-table)
category-table))
@end example