dotfiles

🎜 Clone'em, tweak'em, stick'em in your $HOME 🎝
git clone https://git.kevinlegouguec.net/dotfiles
Log | Files | Refs | README

commit afdf846cdea02e5156b1849906b96d92247f0ac9
parent cc7f3629d2da9f2fdf96e588562066fb3a229bfb
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Fri,  5 Apr 2019 10:05:14 +0200

Add documentation to lambdas created by my/make-tabless

Diffstat:
M.emacs | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/.emacs b/.emacs @@ -227,9 +227,10 @@ ;; Helper functions and miscellaneous settings. (defun my/make-tabless (f) - "Make a function which will run F with indent-tabs-mode disabled." - (lambda () (interactive) - ;; TODO: copy documentation from F + "Make a function which will run F with `indent-tabs-mode' disabled." + (lambda () + (:documentation (format "Run `%s' with `indent-tabs-mode' set to nil." f)) + (interactive) (let ((indent-tabs-mode nil)) (call-interactively f))))