From b8290114a015e420bebde116f27a630618a87589 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 10 Aug 2016 13:01:13 -0700 Subject: [PATCH] Split named-builder-builder comments into lines --- dotfiles/emacs.d/README.org | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index bdac9c7d..47d30d1c 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -473,7 +473,12 @@ imalison:named-build is a way to invoke a macro in such a way that the lambda th `(defalias (quote ,name) (,builder ,@args))) (put 'imalison:named-build 'lisp-indent-function 1) #+END_SRC -~imalison:named-builder-builder~ builds a macro from another macro that builds lambda functions. The arguments to the macro that results are exactly the same as those of the original macro, except that the first argument of the new macro is used to name the lambda produced by the original macro (which is passed as the second argument to ~imalison:named-builder-builder~). +~imalison:named-builder-builder~ builds a macro from another macro +that builds lambda functions. The arguments to the macro that results +are exactly the same as those of the original macro, except that the +first argument of the new macro is used to name the lambda produced by +the original macro (which is passed as the second argument to +~imalison:named-builder-builder~). #+BEGIN_SRC emacs-lisp (defmacro imalison:named-builder-builder (named-builder-name builder-name) `(defmacro ,named-builder-name (function-name &rest args)