From: Mark Wooding Date: Wed, 18 Nov 2009 16:34:35 +0000 (+0000) Subject: cruft.el: Some Emacs tweaking. X-Git-Url: https://git.distorted.org.uk/~mdw/fringe/commitdiff_plain/667134e3c91440d099c2d1b113753212ba12b5fd cruft.el: Some Emacs tweaking. Currently indentation rules for Scheme. --- diff --git a/cruft.el b/cruft.el new file mode 100644 index 0000000..241eeb3 --- /dev/null +++ b/cruft.el @@ -0,0 +1,4 @@ +;; scheme indentation +(mapc (lambda (item) (put (car item) 'scheme-indent-function (cdr item))) + '((with-values . 2) (when . 1) (unless . 1) + (condition-case . 1)))