diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-04-01 15:23:01 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-04-01 16:10:36 +0200 |
commit | 8129998deb54c3621dd715c79694725c74630e67 (patch) | |
tree | c5afe1c024e9bbab7d768164ce9451d14efa1840 /lisp/international/titdic-cnv.el | |
parent | 84519cdbda3fdb2351a95fe9e70d1ee74d982081 (diff) | |
download | emacs-8129998deb54c3621dd715c79694725c74630e67.tar.gz emacs-8129998deb54c3621dd715c79694725c74630e67.tar.bz2 emacs-8129998deb54c3621dd715c79694725c74630e67.zip |
Remove redundant #' before lambda in international/*.el
* lisp/international/characters.el:
(use-cjk-char-width-table, update-glyphless-char-display):
* lisp/international/fontset.el (build-default-fontset-data)
(generate-fontset-menu):
* lisp/international/latin1-disp.el (latin1-display-reset):
* lisp/international/mule-cmds.el
(select-safe-coding-system-interactively):
* lisp/international/mule-diag.el (sort-listed-character-sets)
(font-show-log):
* lisp/international/mule.el (char-displayable-p):
* lisp/international/quail.el (quail-keyboard-layout-type)
(quail-update-translation, quail-find-key):
* lisp/international/titdic-cnv.el (tsang-quick-converter)
(ziranma-converter): Remove redundant #' before lambda.
Diffstat (limited to 'lisp/international/titdic-cnv.el')
-rw-r--r-- | lisp/international/titdic-cnv.el | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/lisp/international/titdic-cnv.el b/lisp/international/titdic-cnv.el index 64d66443760..ccb4c8390bb 100644 --- a/lisp/international/titdic-cnv.el +++ b/lisp/international/titdic-cnv.el @@ -781,7 +781,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\"." (if val (setq trans (concat val trans))) (puthash key trans table) (forward-line 1))) - (maphash #'(lambda (key val) (setq dic (cons (cons key val) dic))) + (maphash (lambda (key val) (setq dic (cons (cons key val) dic))) table))) (setq dic (sort dic (lambda (x y) (string< (car x ) (car y))))) (dolist (elt dic) @@ -931,18 +931,18 @@ method `chinese-tonepy' with which you must specify tones by digits (if val (setq trans (vconcat val trans))) (puthash key trans table) (forward-line 1)) - (maphash #'(lambda (key trans) - (let ((len (length trans)) - i) - (if (and (= len 1) (= (length (aref trans 0)) 1)) - (setq trans (aref trans 0)) - (setq i 0) - (while (and (< i len) - (= (length (aref trans i)) 1)) - (setq i (1+ i))) - (if (= i len) - (setq trans (mapconcat #'identity trans ""))))) - (setq dic (cons (cons key trans) dic))) + (maphash (lambda (key trans) + (let ((len (length trans)) + i) + (if (and (= len 1) (= (length (aref trans 0)) 1)) + (setq trans (aref trans 0)) + (setq i 0) + (while (and (< i len) + (= (length (aref trans i)) 1)) + (setq i (1+ i))) + (if (= i len) + (setq trans (mapconcat #'identity trans ""))))) + (setq dic (cons (cons key trans) dic))) table))) (setq dic (sort dic (lambda (x y) (string< (car x) (car y))))) (goto-char (point-max)) |