From 7282553d2d405f443911a7b026e7eeb64b0eaad2 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 2 Apr 2018 05:50:07 -0400 Subject: [PATCH] app/calendar: minor indentation refactor --- modules/app/calendar/autoload.el | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/modules/app/calendar/autoload.el b/modules/app/calendar/autoload.el index 1f0348809..509cb237b 100644 --- a/modules/app/calendar/autoload.el +++ b/modules/app/calendar/autoload.el @@ -45,15 +45,15 @@ ;;;###autoload (defun +calendar*cfw:render-button (title command &optional state) - "render-button + "render-button TITLE COMMAND STATE" - (let ((text (concat " " title " ")) - (keymap (make-sparse-keymap))) - (cfw:rt text (if state 'cfw:face-toolbar-button-on - 'cfw:face-toolbar-button-off)) - (define-key keymap [mouse-1] command) - (cfw:tp text 'keymap keymap) - (cfw:tp text 'mouse-face 'highlight) - text)) + (let ((text (concat " " title " ")) + (keymap (make-sparse-keymap))) + (cfw:rt text (if state 'cfw:face-toolbar-button-on + 'cfw:face-toolbar-button-off)) + (define-key keymap [mouse-1] command) + (cfw:tp text 'keymap keymap) + (cfw:tp text 'mouse-face 'highlight) + text))