From 805a3fbd4fbc905630b9527127201ceb7953a6e7 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Thu, 27 Aug 2015 23:18:57 -0400 Subject: [PATCH] Make emacs set-tab-width interactive --- emacs.d/emacs.org | 1 + 1 file changed, 1 insertion(+) diff --git a/emacs.d/emacs.org b/emacs.d/emacs.org index 3ef4b26..d1b0eff 100644 --- a/emacs.d/emacs.org +++ b/emacs.d/emacs.org @@ -805,6 +805,7 @@ the tab width for display of the tab character and to generate the proper #+BEGIN_SRC emacs-lisp (defun set-tab-width (width) "Set tab width to WIDTH and generate tab stops" + (interactive "nTab width: ") (setq tab-width width) (setq tab-stop-list (number-sequence width 120 width)))