Added EmacsConfigurationAndHelp directory
[temp.git] / .emacs.d / color-theme / color-theme-autoloads.el
blob93a33be42b70b52ad4c72e9adf5969296055a97d
1 ;;; -*-emacs-lisp-*-
3 ;; Copyright (C) 2002 Free Software Foundation, Inc.
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))
14 (provide 'color-theme-autoloads)
15 ;;; Generated autoloads follow (made by autoload.el).
17 ;;;### (autoloads (color-theme-initialize color-theme-submit color-theme-install
18 ;;;;;; color-theme-compare color-theme-make-snapshot color-theme-analyze-defun
19 ;;;;;; color-theme-print color-theme-install-at-point-for-current-frame
20 ;;;;;; color-theme-install-at-mouse color-theme-describe color-theme-select)
21 ;;;;;; "color-theme" "color-theme.el" (17529 41105))
22 ;;; Generated autoloads from color-theme.el
24 (autoload (quote color-theme-select) "color-theme" "\
25 Displays a special buffer for selecting and installing a color theme.
26 With optional prefix ARG, this buffer will include color theme libraries
27 as well. A color theme library is in itself not complete, it must be
28 used as part of another color theme to be useful. Thus, color theme
29 libraries are mainly useful for color theme authors." t nil)
31 (autoload (quote color-theme-describe) "color-theme" "\
32 Describe color theme listed at point.
33 This shows the documentation of the value of text-property color-theme
34 at point. The text-property color-theme should be a color theme
35 function. See `color-themes'." t nil)
37 (autoload (quote color-theme-install-at-mouse) "color-theme" "\
38 Install color theme clicked upon using the mouse.
39 First argument EVENT is used to set point. Then
40 `color-theme-install-at-point' is called." t nil)
42 (autoload (quote color-theme-install-at-point-for-current-frame) "color-theme" "\
43 Install color theme at point for current frame only.
44 Binds `color-theme-is-global' to nil and calls
45 `color-theme-install-at-point'." t nil)
47 (autoload (quote color-theme-print) "color-theme" "\
48 Print the current color theme function.
50 You can contribute this function to <URL:news:gnu.emacs.sources> or
51 paste it into your .emacs file and call it. That should recreate all
52 the settings necessary for your color theme.
54 Example:
56 (require 'color-theme)
57 (defun my-color-theme ()
58 \"Color theme by Alex Schroeder, created 2000-05-17.\"
59 (interactive)
60 (color-theme-install
61 '(...
62 ...
63 ...)))
64 (my-color-theme)
66 If you want to use a specific color theme function, you can call the
67 color theme function in your .emacs directly.
69 Example:
71 (require 'color-theme)
72 (color-theme-gnome2)" t nil)
74 (autoload (quote color-theme-analyze-defun) "color-theme" "\
75 Once you have a color-theme printed, check for missing faces.
76 This is used by maintainers who receive a color-theme submission
77 and want to make sure it follows the guidelines by the color-theme
78 author." t nil)
80 (autoload (quote color-theme-make-snapshot) "color-theme" "\
81 Return the definition of the current color-theme.
82 The function returned will recreate the color-theme in use at the moment." nil nil)
84 (autoload (quote color-theme-compare) "color-theme" "\
85 Compare two color themes.
86 This will print the differences between installing THEME-A and
87 installing THEME-B. Note that the order is important: If a face is
88 defined in THEME-A and not in THEME-B, then this will not show up as a
89 difference, because there is no reset before installing THEME-B. If a
90 face is defined in THEME-B and not in THEME-A, then this will show up as
91 a difference." t nil)
93 (autoload (quote color-theme-install) "color-theme" "\
94 Install a color theme defined by frame parameters, variables and faces.
96 The theme is installed for all present and future frames; any missing
97 faces are created. See `color-theme-install-faces'.
99 THEME is a color theme definition. See below for more information.
101 If you want to install a color theme from your .emacs, use the output
102 generated by `color-theme-print'. This produces color theme function
103 which you can copy to your .emacs.
105 A color theme definition is a list:
106 \([FUNCTION] FRAME-PARAMETERS VARIABLE-SETTINGS FACE-DEFINITIONS)
108 FUNCTION is the color theme function which called `color-theme-install'.
109 This is no longer used. There was a time when this package supported
110 automatic factoring of color themes. This has been abandoned.
112 FRAME-PARAMETERS is an alist of frame parameters. These are installed
113 with `color-theme-install-frame-params'. These are installed last such
114 that any changes to the default face can be changed by the frame
115 parameters.
117 VARIABLE-DEFINITIONS is an alist of variable settings. These are
118 installed with `color-theme-install-variables'.
120 FACE-DEFINITIONS is an alist of face definitions. These are installed
121 with `color-theme-install-faces'.
123 If `color-theme-is-cumulative' is nil, a color theme will undo face and
124 frame-parameter settings of previous color themes." nil nil)
126 (autoload (quote color-theme-submit) "color-theme" "\
127 Submit your color-theme to the maintainer." t nil)
129 (autoload (quote color-theme-initialize) "color-theme" "\
130 Initialize the color theme package by loading color-theme-libraries." t nil)
132 ;;;***