From 28683d77b43b50e455d0d9b69a8d756fce22405b Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 19 Aug 2019 04:47:07 +0200 Subject: [PATCH] Added comment to my/configure-project. --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index edb4355..0bae868 100644 --- a/init.el +++ b/init.el @@ -1,5 +1,5 @@ ;;; init.el --- tastytea's Emacs init file. -;; Time-stamp: <2019-08-12T04:40:10+00:00> +;; Time-stamp: <2019-08-12T17:35:18+00:00> ;;; Commentary: ;; I am using this file with Emacs 26, but most of it will probably work with @@ -296,6 +296,7 @@ With argument, do this that many times." ;; Always run `cmake-ide-run-cmake` after configuring a project. (defun my/configure-project (old-function &rest arguments) + "Runs `projectile-configure-project' followed by `cmake-ide-run-cmake'." (apply old-function arguments) (cmake-ide-run-cmake) )