branch: elpa/sesman commit 4229e2128c7d1b0ecb6f3bf98c7e10cb48755390 Author: Bozhidar Batsov <bozhi...@batsov.com> Commit: Bozhidar Batsov <bozhi...@batsov.com>
Replace a redundant let* --- sesman.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sesman.el b/sesman.el index 67f8144629..67ecd6e560 100644 --- a/sesman.el +++ b/sesman.el @@ -261,7 +261,7 @@ Can be either a symbol, or a function returning a symbol.") (defun sesman-start () "Start sesman session." (interactive) - (let* ((system (sesman--system))) + (let ((system (sesman--system))) (message "Starting new %s session ..." system) (sesman-start-session system)))