[lice @ get doctor working. fix line-end-position. fix move-to-left-margin.]
[lice.git] / custom.lisp
blobede2e855e70205c2c057d95c33976a637e4f5686
1 (in-package "LICE")
3 ;; FIXME: obviously this is incomplete
4 (defmacro defcustom (symbol value doc &rest args)
5 (declare (ignore args))
6 `(defvar ,symbol ,value ,doc))
8 ;; FIXME: empty
9 (defmacro defgroup (name something docstring &rest stuff)
10 (declare (ignore name something docstring stuff))
13 ;; FIXME: empty
14 (defmacro defface (name colors docstring group)
15 (declare (ignore name colors docstring group))
18 ;; FIXME: this is incomplete
19 (defmacro defcustom-buffer-local (symbol value doc &rest args)
20 (declare (ignore args))
21 `(define-buffer-local ,symbol ,value ,doc))