Rename argument to imalison:help-function-arglist

This commit is contained in:
Ivan Malison 2016-08-12 14:31:58 -07:00
parent d0765091e1
commit bfcece5800
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -462,8 +462,8 @@ new macro name and the -fn suffix.
*** Compose Functions
**** A version supporting macros
#+BEGIN_SRC emacs-lisp
(defun imalison:help-function-arglist (function)
(let ((result (help-function-arglist function )))
(defun imalison:help-function-arglist (fn)
(let ((result (help-function-arglist fn)))
(if (eq result t) '(&rest args) result)))
(defmacro imalison:compose-fn (&rest funcs)