diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/language/ind-util.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bb26b76edce..2f1e33f4b28 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-12-16 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * language/ind-util.el (mapthread): Make a closure. | ||
| 4 | |||
| 1 | 2001-12-15 Richard M. Stallman <rms@gnu.org> | 5 | 2001-12-15 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * isearch.el (isearch-start-hscroll): New variable. | 7 | * isearch.el (isearch-start-hscroll): New variable. |
diff --git a/lisp/language/ind-util.el b/lisp/language/ind-util.el index de1ca127f52..bc72638c111 100644 --- a/lisp/language/ind-util.el +++ b/lisp/language/ind-util.el | |||
| @@ -200,7 +200,7 @@ FUNCTION will be called 15 times." | |||
| 200 | (lambda (x) | 200 | (lambda (x) |
| 201 | (apply | 201 | (apply |
| 202 | 'mapthread | 202 | 'mapthread |
| 203 | (lambda (&rest y) (apply function x y)) | 203 | `(lambda (&rest y) (apply ',function x y)) |
| 204 | seqrest)) | 204 | seqrest)) |
| 205 | seq1) | 205 | seq1) |
| 206 | (mapcar function seq1))) | 206 | (mapcar function seq1))) |