Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
marvel
GitHub Repository: marvel/qnf
Path: blob/master/elisp/color-theme-6.6.0/color-theme-autoloads.el
989 views
1
;;; -*-emacs-lisp-*-
2
3
;; Copyright (C) 2002 Free Software Foundation, Inc.
4
5
(defvar generated-autoload-file)
6
(defvar command-line-args-left)
7
(defun color-theme-generate-autoloads ()
8
(interactive)
9
(require 'autoload)
10
(setq generated-autoload-file (car command-line-args-left))
11
(setq command-line-args-left (cdr command-line-args-left))
12
(batch-update-autoloads))
13
14
(provide 'color-theme-autoloads)
15
;;; Generated autoloads follow (made by autoload.el).
16
17
;;;### (autoloads nil nil ("themes/color-theme-example.el" "themes/color-theme-library.el")
18
;;;;;; (19477 13157 950330))
19
20
;;;***
21
22
;;;### (autoloads (color-theme-initialize color-theme-submit color-theme-install
23
;;;;;; color-theme-compare color-theme-make-snapshot color-theme-analyze-defun
24
;;;;;; color-theme-print color-theme-install-at-point-for-current-frame
25
;;;;;; color-theme-install-at-mouse color-theme-describe color-theme-select)
26
;;;;;; "color-theme" "color-theme.el" (17529 41105))
27
;;; Generated autoloads from color-theme.el
28
29
(autoload (quote color-theme-select) "color-theme" "\
30
Displays a special buffer for selecting and installing a color theme.
31
With optional prefix ARG, this buffer will include color theme libraries
32
as well. A color theme library is in itself not complete, it must be
33
used as part of another color theme to be useful. Thus, color theme
34
libraries are mainly useful for color theme authors.
35
36
\(fn &optional ARG)" t nil)
37
38
(autoload (quote color-theme-describe) "color-theme" "\
39
Describe color theme listed at point.
40
This shows the documentation of the value of text-property color-theme
41
at point. The text-property color-theme should be a color theme
42
function. See `color-themes'.
43
44
\(fn)" t nil)
45
46
(autoload (quote color-theme-install-at-mouse) "color-theme" "\
47
Install color theme clicked upon using the mouse.
48
First argument EVENT is used to set point. Then
49
`color-theme-install-at-point' is called.
50
51
\(fn EVENT)" t nil)
52
53
(autoload (quote color-theme-install-at-point-for-current-frame) "color-theme" "\
54
Install color theme at point for current frame only.
55
Binds `color-theme-is-global' to nil and calls
56
`color-theme-install-at-point'.
57
58
\(fn)" t nil)
59
60
(autoload (quote color-theme-print) "color-theme" "\
61
Print the current color theme function.
62
63
You can contribute this function to <URL:news:gnu.emacs.sources> or
64
paste it into your .emacs file and call it. That should recreate all
65
the settings necessary for your color theme.
66
67
Example:
68
69
(require 'color-theme)
70
(defun my-color-theme ()
71
\"Color theme by Alex Schroeder, created 2000-05-17.\"
72
(interactive)
73
(color-theme-install
74
'(...
75
...
76
...)))
77
(my-color-theme)
78
79
If you want to use a specific color theme function, you can call the
80
color theme function in your .emacs directly.
81
82
Example:
83
84
(require 'color-theme)
85
(color-theme-gnome2)
86
87
\(fn &optional BUF)" t nil)
88
89
(autoload (quote color-theme-analyze-defun) "color-theme" "\
90
Once you have a color-theme printed, check for missing faces.
91
This is used by maintainers who receive a color-theme submission
92
and want to make sure it follows the guidelines by the color-theme
93
author.
94
95
\(fn)" t nil)
96
97
(autoload (quote color-theme-make-snapshot) "color-theme" "\
98
Return the definition of the current color-theme.
99
The function returned will recreate the color-theme in use at the moment.
100
101
\(fn)" nil nil)
102
103
(autoload (quote color-theme-compare) "color-theme" "\
104
Compare two color themes.
105
This will print the differences between installing THEME-A and
106
installing THEME-B. Note that the order is important: If a face is
107
defined in THEME-A and not in THEME-B, then this will not show up as a
108
difference, because there is no reset before installing THEME-B. If a
109
face is defined in THEME-B and not in THEME-A, then this will show up as
110
a difference.
111
112
\(fn THEME-A THEME-B)" t nil)
113
114
(autoload (quote color-theme-install) "color-theme" "\
115
Install a color theme defined by frame parameters, variables and faces.
116
117
The theme is installed for all present and future frames; any missing
118
faces are created. See `color-theme-install-faces'.
119
120
THEME is a color theme definition. See below for more information.
121
122
If you want to install a color theme from your .emacs, use the output
123
generated by `color-theme-print'. This produces color theme function
124
which you can copy to your .emacs.
125
126
A color theme definition is a list:
127
\([FUNCTION] FRAME-PARAMETERS VARIABLE-SETTINGS FACE-DEFINITIONS)
128
129
FUNCTION is the color theme function which called `color-theme-install'.
130
This is no longer used. There was a time when this package supported
131
automatic factoring of color themes. This has been abandoned.
132
133
FRAME-PARAMETERS is an alist of frame parameters. These are installed
134
with `color-theme-install-frame-params'. These are installed last such
135
that any changes to the default face can be changed by the frame
136
parameters.
137
138
VARIABLE-DEFINITIONS is an alist of variable settings. These are
139
installed with `color-theme-install-variables'.
140
141
FACE-DEFINITIONS is an alist of face definitions. These are installed
142
with `color-theme-install-faces'.
143
144
If `color-theme-is-cumulative' is nil, a color theme will undo face and
145
frame-parameter settings of previous color themes.
146
147
\(fn THEME)" nil nil)
148
149
(autoload (quote color-theme-submit) "color-theme" "\
150
Submit your color-theme to the maintainer.
151
152
\(fn)" t nil)
153
154
(autoload (quote color-theme-initialize) "color-theme" "\
155
Initialize the color theme package by loading color-theme-libraries.
156
157
\(fn)" t nil)
158
159
;;;***
160
161