diff options
| author | Stefan Monnier | 2011-10-23 22:03:24 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2011-10-23 22:03:24 -0400 |
| commit | 08c7586636dca746d777865287f7c92cfaffd92b (patch) | |
| tree | 6585785f6dff8b4f03c17cfd590042bbfb752e30 | |
| parent | e7a3ff06b31baa4e344e0a0b1addde57c16c817f (diff) | |
| download | emacs-08c7586636dca746d777865287f7c92cfaffd92b.tar.gz emacs-08c7586636dca746d777865287f7c92cfaffd92b.zip | |
* subr.el (apply-partially): Remove redundant comment.
| -rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 05ac198dd13..c88cef0ba0f 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -116,8 +116,6 @@ BODY should be a list of Lisp expressions. | |||
| 116 | ;; depend on backquote.el. | 116 | ;; depend on backquote.el. |
| 117 | (list 'function (cons 'lambda cdr))) | 117 | (list 'function (cons 'lambda cdr))) |
| 118 | 118 | ||
| 119 | ;; Partial application of functions (similar to "currying"). | ||
| 120 | ;; This function is here rather than in subr.el because it uses CL. | ||
| 121 | (defun apply-partially (fun &rest args) | 119 | (defun apply-partially (fun &rest args) |
| 122 | "Return a function that is a partial application of FUN to ARGS. | 120 | "Return a function that is a partial application of FUN to ARGS. |
| 123 | ARGS is a list of the first N arguments to pass to FUN. | 121 | ARGS is a list of the first N arguments to pass to FUN. |