1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
;;; geiser-custom.el -- customization utilities -*- lexical-binding: t; -*-
;; Copyright (C) 2009, 2010, 2012 Jose Antonio Ortega Ruiz
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the Modified BSD License. You should
;; have received a copy of the license along with this program. If
;; not, see <http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5>.
;; Start date: Sat Feb 14, 2009 21:49
;;; Code:
(require 'font-lock)
(require 'geiser-base)
;;; Customization group:
(defgroup geiser nil
"Geiser framework for Scheme-Emacs interaction."
:group 'languages)
;;; Faces:
(defgroup geiser-faces nil
"Faces used by Geiser."
:group 'geiser
:group 'faces)
(defmacro geiser-custom--defface (face def group doc)
(declare (doc-string 4) (indent 1))
(let ((face (intern (format "geiser-font-lock-%s" face))))
`(defface ,face (face-default-spec ,def)
,(format "Face for %s." doc)
:group ',group
:group 'geiser-faces)))
;;; Reload support:
(defvar geiser-custom--memoized-vars nil)
(defun geiser-custom--memoize (name)
;; FIXME: Why not build this list with mapatoms, filtering on a "\\`'geiser-"
;; prefix and checking that it's a `defcustom', so we don't need
;; `geiser-custom--defcustom'?
(add-to-list 'geiser-custom--memoized-vars name))
(defmacro geiser-custom--defcustom (name &rest body)
"Like `defcustom' but also put NAME on an internal list.
That list is used by `geiser-reload' to preserve the values
of the listed variables. It is not used for anything else."
;; FIXME Remembering the value like this is not actually
;; necessary. Evaluting `defcustom' always preserves the
;; existing value, if any.
(declare (doc-string 3) (debug (name body)) (indent 2))
`(progn
(geiser-custom--memoize ',name)
(defcustom ,name ,@body)))
(defun geiser-custom--memoized-state ()
(let ((result))
(dolist (name geiser-custom--memoized-vars result)
(when (boundp name)
(push (cons name (symbol-value name)) result)))))
(defconst geiser-custom-font-lock-keywords
(eval-when-compile
`((,(concat "(\\(geiser-custom--\\(?:defcustom\\|defface\\)\\)\\_>"
"[ \t'\(]*"
"\\(\\(?:\\sw\\|\\s_\\)+\\)?")
(1 font-lock-keyword-face)
(2 font-lock-variable-name-face nil t)))))
(font-lock-add-keywords 'emacs-lisp-mode geiser-custom-font-lock-keywords)
(provide 'geiser-custom)
|