Initial commit

This commit is contained in:
Némunaire 2012-10-13 21:35:28 +02:00
commit 99e3df82b7
28 changed files with 2639 additions and 0 deletions

13
stuff/my-rebox.el Executable file
View file

@ -0,0 +1,13 @@
(require 'rebox)
(defvar my-rebox-style 523)
(make-variable-buffer-local 'my-rebox-style)
(defun my-rebox-comment (style)
(interactive "P")
(if style
(let ((rebox-default-style my-rebox-style)) (rebox-comment nil))
(rebox-comment nil)))
(provide 'my-rebox)