From 1b5af7c9584da1318fe6fc2f7440b5cb6e48d0db Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 10 Aug 2016 16:57:28 -0700 Subject: [PATCH] Make compose headings lowercase --- dotfiles/emacs.d/README.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 24507e7d..3c776103 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -423,7 +423,7 @@ The packages in this section provide no functionality on their own, but provide `(apply ,(car funcs) (imalison:make-list (imalison:compose-with-apply-helper ,(cdr funcs)))))) #+END_SRC -**** Simpler Unary version +**** Simpler unary version #+BEGIN_SRC emacs-lisp (defmacro imalison:compose-unary (&rest funcs) "Build a new function with NAME that is the composition of FUNCS." @@ -436,7 +436,7 @@ The packages in this section provide no functionality on their own, but provide 'arg `(funcall ,(car funcs) (imalison:compose-helper-unary ,(cdr funcs))))) #+END_SRC -**** A Version Supporting Macros +**** A version supporting macros #+BEGIN_SRC emacs-lisp (defun imalison:help-function-arglist (function) (let ((result (help-function-arglist function )))