From: Stefan Monnier Date: Mon, 24 Oct 2011 02:03:24 +0000 (-0400) Subject: * subr.el (apply-partially): Remove redundant comment. X-Git-Tag: emacs-pretest-24.0.91~37^2~1^2~37 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=08c7586636dca746d777865287f7c92cfaffd92b;p=emacs.git * subr.el (apply-partially): Remove redundant comment. --- 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. ;; depend on backquote.el. (list 'function (cons 'lambda cdr))) -;; Partial application of functions (similar to "currying"). -;; This function is here rather than in subr.el because it uses CL. (defun apply-partially (fun &rest args) "Return a function that is a partial application of FUN to ARGS. ARGS is a list of the first N arguments to pass to FUN.