diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2020-04-19 12:40:43 +0200 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2020-04-19 13:19:37 +0200 |
commit | 14a570afaeb9c01bafdb5dd922d8077810e63d16 (patch) | |
tree | ee86dfe4f4aa4e6c12ae8d9c963b95f788890e4a /doc/lispref/syntax.texi | |
parent | d5ec18c66bdefb492826eab0d60e818d5bac7238 (diff) | |
download | emacs-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.texi | 6 |
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 |