diff options
| author | Dave Love | 2000-05-21 17:41:51 +0000 |
|---|---|---|
| committer | Dave Love | 2000-05-21 17:41:51 +0000 |
| commit | 45377ab444f9444faadf5f8bfc31189d1d630d6d (patch) | |
| tree | 9c67822b3f8c70399d0edcb2ea92f094df9839dd | |
| parent | 4e96834374210af47e8559d881de1020b96e4ab4 (diff) | |
| download | emacs-45377ab444f9444faadf5f8bfc31189d1d630d6d.tar.gz emacs-45377ab444f9444faadf5f8bfc31189d1d630d6d.zip | |
(list-non-iso-charset-chars, describe-fontset): Remove redundant
lambda.
| -rw-r--r-- | lisp/international/mule-diag.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el index 482b41426dd..67554dd180a 100644 --- a/lisp/international/mule-diag.el +++ b/lisp/international/mule-diag.el | |||
| @@ -427,7 +427,7 @@ detailed meanings of these arguments." | |||
| 427 | (error "Unknown external charset: %s" charset)) | 427 | (error "Unknown external charset: %s" charset)) |
| 428 | (insert (format "Characters in non-ISO charset %s.\n" charset)) | 428 | (insert (format "Characters in non-ISO charset %s.\n" charset)) |
| 429 | (insert "They are mapped to: " | 429 | (insert "They are mapped to: " |
| 430 | (mapconcat (lambda (x) (symbol-name x)) charsets ", ") | 430 | (mapconcat #'symbol-name charsets ", ") |
| 431 | "\n") | 431 | "\n") |
| 432 | (while ranges | 432 | (while ranges |
| 433 | (setq range (car ranges) ranges (cdr ranges)) | 433 | (setq range (car ranges) ranges (cdr ranges)) |
| @@ -1104,8 +1104,8 @@ This shows which font is used for which character(s)." | |||
| 1104 | (if (not (and window-system (fboundp 'fontset-list))) | 1104 | (if (not (and window-system (fboundp 'fontset-list))) |
| 1105 | (error "No fontsets being used") | 1105 | (error "No fontsets being used") |
| 1106 | (let ((fontset-list (append | 1106 | (let ((fontset-list (append |
| 1107 | (mapcar '(lambda (x) (list x)) (fontset-list)) | 1107 | (mapcar 'list (fontset-list)) |
| 1108 | (mapcar '(lambda (x) (list (cdr x))) | 1108 | (mapcar (lambda (x) (list (cdr x))) |
| 1109 | fontset-alias-alist))) | 1109 | fontset-alias-alist))) |
| 1110 | (completion-ignore-case t)) | 1110 | (completion-ignore-case t)) |
| 1111 | (list (completing-read | 1111 | (list (completing-read |