diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-11-12 22:06:47 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-11-12 22:24:58 +0100 |
commit | 206dd9d5923d5db7b44a1bf67e6ec61c027ab1d2 (patch) | |
tree | 0def86eb15f037d72cc21afe1d3acca10b15fc76 /lisp/term | |
parent | 8ac71a07ce99821d8ffe41a8d6fd2261131a7261 (diff) | |
download | emacs-206dd9d5923d5db7b44a1bf67e6ec61c027ab1d2.tar.gz |
Don't quote lambdas in several places
* lisp/allout-widgets.el (allout-widgets-adjusting-message)
(allout-widgets-exposure-change-processor)
(allout-widgets-count-buttons-in-region):
* lisp/ansi-color.el (ansi-color-make-color-map):
* lisp/case-table.el (describe-buffer-case-table):
* lisp/emacs-lisp/byte-opt.el (byte-decompile-bytecode-1):
* lisp/gnus/gnus-agent.el (gnus-agent-regenerate-group):
* lisp/gnus/nnir.el (nnir-run-swish++, nnir-run-swish-e)
(nnir-run-hyrex, nnir-run-namazu):
* lisp/hippie-exp.el (make-hippie-expand-function)
(try-complete-lisp-symbol, try-complete-lisp-symbol-partially)
(try-expand-all-abbrevs):
* lisp/international/mule-cmds.el (sort-coding-systems)
(select-safe-coding-system, select-message-coding-system)
(read-language-name, encoded-string-description):
* lisp/international/quail.el (quail-keyseq-translate)
(quail-get-translations, quail-build-decode-map)
(quail-insert-decode-map):
* lisp/jka-compr.el (jka-compr-uninstall):
* lisp/locate.el (locate-in-alternate-database):
* lisp/mail/mailabbrev.el (mail-resolve-all-aliases-1)
(mail-abbrev-make-syntax-table):
* lisp/mh-e/mh-seq.el (mh-read-folder-sequences):
* lisp/net/eudcb-ldap.el (eudc-ldap-simple-query-internal):
* lisp/progmodes/make-mode.el (makefile-query-targets)
(makefile-prompt-for-gmake-funargs):
* lisp/shadowfile.el (shadow-cancel, shadow-shadows-of):
* lisp/sort.el (sort-pages, sort-fields, sort-regexp-fields):
* lisp/subr.el (listify-key-sequence):
* lisp/term/wyse50.el (terminal-init-wyse50):
* lisp/textmodes/ispell.el (ispell-help)
(ispell-begin-tex-skip-regexp):
* lisp/textmodes/page-ext.el (pages-sort-region):
* lisp/textmodes/refer.el (refer-find-entry-in-file):
* lisp/url/url-expand.el (url-expand-file-name): Don't quote lambdas.
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/wyse50.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/term/wyse50.el b/lisp/term/wyse50.el index 6d72d4a05b6..f06563ebebf 100644 --- a/lisp/term/wyse50.el +++ b/lisp/term/wyse50.el @@ -126,9 +126,9 @@ ;; On such terminals, Emacs should sacrifice the first and last character of ;; each mode line, rather than a whole screen column! (add-hook 'kill-emacs-hook - (function (lambda () (interactive) - (send-string-to-terminal - (concat "\ea23R" (1+ (frame-width)) "C\eG0")))))) + (lambda () (interactive) + (send-string-to-terminal + (concat "\ea23R" (1+ (frame-width)) "C\eG0"))))) (defun enable-arrow-keys () "To be called by `tty-setup-hook'. Overrides 6 Emacs standard keys |