From 6cbc253aa0580e2f242551500764bba9780e669d Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Wed, 30 Sep 2020 16:02:22 +0200 Subject: Don't recommend quoting lambdas * doc/misc/calc.texi (Symbolic Lisp Functions): * doc/misc/cl.texi (Obsolete Lexical Binding): * lisp/master.el: * lisp/progmodes/sql.el (sql-interactive-mode): * lisp/textmodes/flyspell.el (flyspell-mode): * lisp/textmodes/ispell.el (ispell-message): * lisp/textmodes/table.el: Doc fixes; don't recommend quoting lambdas. --- lisp/textmodes/table.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lisp/textmodes/table.el') diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index c7bf687a9e1..391e7570b5f 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el @@ -339,8 +339,8 @@ ;; When using `table-cell-map-hook' do not use `local-set-key'. ;; ;; (add-hook 'table-cell-map-hook -;; (function (lambda () -;; (local-set-key [] ')))) +;; (lambda () +;; (local-set-key [] '))) ;; ;; Adding the above to your init file is a common way to customize a ;; mode specific keymap. However it does not work for this package. @@ -349,8 +349,8 @@ ;; explicitly. The correct way of achieving above task is: ;; ;; (add-hook 'table-cell-map-hook -;; (function (lambda () -;; (define-key table-cell-map [] ')))) +;; (lambda () +;; (define-key table-cell-map [] '))) ;; ;; ----- ;; Menu: -- cgit v1.2.3