aboutsummaryrefslogtreecommitdiff
path: root/.emacs.d/init.org
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2019-12-02 16:41:07 +0100
committerMiquel Sabaté Solà <msabate@suse.com>2019-12-02 16:41:07 +0100
commita6f15e6e7763444abbe9e99dad8b85331eaf917b (patch)
tree94e861110804b8eb1e6939cc36cb8d6e911831bf /.emacs.d/init.org
parent9966a1e07a8236efe78043932f94702ab3be17e4 (diff)
downloaddotfiles-a6f15e6e7763444abbe9e99dad8b85331eaf917b.tar.gz
dotfiles-a6f15e6e7763444abbe9e99dad8b85331eaf917b.zip
Minor improvements here and there
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to '.emacs.d/init.org')
-rw-r--r--.emacs.d/init.org4
1 files changed, 3 insertions, 1 deletions
diff --git a/.emacs.d/init.org b/.emacs.d/init.org
index 8ee387f..af1b905 100644
--- a/.emacs.d/init.org
+++ b/.emacs.d/init.org
@@ -2483,10 +2483,12 @@ And last but not least, I use a wrapper to start a screencast:
(defun mssola-screencast ()
"Start keycast-mode and then start a gif screencast."
+ (interactive)
+
(if (version< emacs-version "25.3")
(message "Requires 25.3 or later.")
(progn
- (keycast)
+ (keycast-mode)
(gif-screencast))))
#+END_SRC