Reorganize some of the more random files.
[sod] / src / emacs-hacks.el
diff --git a/src/emacs-hacks.el b/src/emacs-hacks.el
new file mode 100644 (file)
index 0000000..9127080
--- /dev/null
@@ -0,0 +1,15 @@
+(dolist (entry '((parse 0)
+                (many 1)
+                (skip-many 1)
+                (seq 1)
+                (lisp 0)
+                (if-parse 2)
+                (if-char 2)
+                (expr 1)
+                (label 1)
+                (acond . cond)
+                (define-class-slot 3)))
+  (put (car entry) 'common-lisp-indent-function
+       (if (symbolp (cdr entry))
+          (get (cdr entry) 'common-lisp-indent-function)
+        (cadr entry))))
\ No newline at end of file