branch: externals/fontaine commit 65ccbbd4e7477a2d5eabaff81356e128080058b4 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Re-indent code in the manual --- README.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index bbd89145a5..7f18ec9f5f 100644 --- a/README.org +++ b/README.org @@ -573,11 +573,11 @@ way: #+begin_src emacs-lisp ;; Set up the `after-enable-theme-hook' (defvar after-enable-theme-hook nil - "Normal hook run after enabling a theme.") + "Normal hook run after enabling a theme.") (defun run-after-enable-theme-hook (&rest _args) - "Run `after-enable-theme-hook'." - (run-hooks 'after-enable-theme-hook)) + "Run `after-enable-theme-hook'." + (run-hooks 'after-enable-theme-hook)) (advice-add 'enable-theme :after #'run-after-enable-theme-hook) #+end_src