diff options
| author | Dave Love | 2000-05-21 17:48:48 +0000 |
|---|---|---|
| committer | Dave Love | 2000-05-21 17:48:48 +0000 |
| commit | cb7216a79a8a82cafaccf5506d187d3ac6ff4711 (patch) | |
| tree | ec1fa0c08dd4f81bfa6fda827d1fed7bab3fcbc2 | |
| parent | 45377ab444f9444faadf5f8bfc31189d1d630d6d (diff) | |
| download | emacs-cb7216a79a8a82cafaccf5506d187d3ac6ff4711.tar.gz emacs-cb7216a79a8a82cafaccf5506d187d3ac6ff4711.zip | |
(detect-coding-with-priority): Use mapc. Remove redundant lambda.
| -rw-r--r-- | lisp/ChangeLog | 20 | ||||
| -rw-r--r-- | lisp/international/mule-util.el | 7 |
2 files changed, 23 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e3abe1253ce..6f19f4141d3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,23 @@ | |||
| 1 | 2000-05-21 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * international/mule-util.el (detect-coding-with-priority): Use | ||
| 4 | mapc. Remove redundant lambda. | ||
| 5 | |||
| 6 | * international/mule-diag.el (list-non-iso-charset-chars) | ||
| 7 | (describe-fontset): Remove redundant lambda. | ||
| 8 | |||
| 9 | * emulation/crisp.el (brief-mode): New alias. | ||
| 10 | |||
| 11 | * emacs-lisp/ring.el (ring-elements): New function. | ||
| 12 | |||
| 13 | * emacs-lisp/easymenu.el (easy-menu-create-menu) | ||
| 14 | (easy-menu-do-add-item): Use keywordp. | ||
| 15 | |||
| 16 | * emacs-lisp/byte-opt.el: Update side-effect free function lists. | ||
| 17 | |||
| 18 | * replace.el: Doc and error message fixes. | ||
| 19 | (replace-highlight): Use facep, not internal-find-face. | ||
| 20 | |||
| 1 | 2000-05-20 Stefan Monnier <monnier@cs.yale.edu> | 21 | 2000-05-20 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 22 | ||
| 3 | * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda. | 23 | * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda. |
diff --git a/lisp/international/mule-util.el b/lisp/international/mule-util.el index 63f7f16ad74..a7a53e5a3ed 100644 --- a/lisp/international/mule-util.el +++ b/lisp/international/mule-util.el | |||
| @@ -270,10 +270,9 @@ coding systems ordered by priority." | |||
| 270 | (coding-category-list coding-category-list) | 270 | (coding-category-list coding-category-list) |
| 271 | ,@(mapcar (function (lambda (x) (list x x))) | 271 | ,@(mapcar (function (lambda (x) (list x x))) |
| 272 | coding-category-list)) | 272 | coding-category-list)) |
| 273 | (mapcar (function (lambda (x) (set (car x) (cdr x)))) | 273 | (mapc (function (lambda (x) (set (car x) (cdr x)))) |
| 274 | prio-list) | 274 | prio-list) |
| 275 | (set-coding-priority (mapcar (function (lambda (x) (car x))) | 275 | (set-coding-priority (mapcar #'car prio-list)) |
| 276 | prio-list)) | ||
| 277 | (detect-coding-region ,from ,to)) | 276 | (detect-coding-region ,from ,to)) |
| 278 | ;; We must restore the internal database. | 277 | ;; We must restore the internal database. |
| 279 | (set-coding-priority coding-category-list) | 278 | (set-coding-priority coding-category-list) |