conf-emacs/stuff/my-rebox.el

14 lines
277 B
EmacsLisp
Raw Normal View History

2012-10-13 19:35:28 +00:00
(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)