Path: blob/master/elisp/color-theme-6.6.0/color-theme-autoloads.el
989 views
;;; -*-emacs-lisp-*-12;; Copyright (C) 2002 Free Software Foundation, Inc.34(defvar generated-autoload-file)5(defvar command-line-args-left)6(defun color-theme-generate-autoloads ()7(interactive)8(require 'autoload)9(setq generated-autoload-file (car command-line-args-left))10(setq command-line-args-left (cdr command-line-args-left))11(batch-update-autoloads))1213(provide 'color-theme-autoloads)14;;; Generated autoloads follow (made by autoload.el).1516;;;### (autoloads nil nil ("themes/color-theme-example.el" "themes/color-theme-library.el")17;;;;;; (19477 13157 950330))1819;;;***2021;;;### (autoloads (color-theme-initialize color-theme-submit color-theme-install22;;;;;; color-theme-compare color-theme-make-snapshot color-theme-analyze-defun23;;;;;; color-theme-print color-theme-install-at-point-for-current-frame24;;;;;; color-theme-install-at-mouse color-theme-describe color-theme-select)25;;;;;; "color-theme" "color-theme.el" (17529 41105))26;;; Generated autoloads from color-theme.el2728(autoload (quote color-theme-select) "color-theme" "\29Displays a special buffer for selecting and installing a color theme.30With optional prefix ARG, this buffer will include color theme libraries31as well. A color theme library is in itself not complete, it must be32used as part of another color theme to be useful. Thus, color theme33libraries are mainly useful for color theme authors.3435\(fn &optional ARG)" t nil)3637(autoload (quote color-theme-describe) "color-theme" "\38Describe color theme listed at point.39This shows the documentation of the value of text-property color-theme40at point. The text-property color-theme should be a color theme41function. See `color-themes'.4243\(fn)" t nil)4445(autoload (quote color-theme-install-at-mouse) "color-theme" "\46Install color theme clicked upon using the mouse.47First argument EVENT is used to set point. Then48`color-theme-install-at-point' is called.4950\(fn EVENT)" t nil)5152(autoload (quote color-theme-install-at-point-for-current-frame) "color-theme" "\53Install color theme at point for current frame only.54Binds `color-theme-is-global' to nil and calls55`color-theme-install-at-point'.5657\(fn)" t nil)5859(autoload (quote color-theme-print) "color-theme" "\60Print the current color theme function.6162You can contribute this function to <URL:news:gnu.emacs.sources> or63paste it into your .emacs file and call it. That should recreate all64the settings necessary for your color theme.6566Example:6768(require 'color-theme)69(defun my-color-theme ()70\"Color theme by Alex Schroeder, created 2000-05-17.\"71(interactive)72(color-theme-install73'(...74...75...)))76(my-color-theme)7778If you want to use a specific color theme function, you can call the79color theme function in your .emacs directly.8081Example:8283(require 'color-theme)84(color-theme-gnome2)8586\(fn &optional BUF)" t nil)8788(autoload (quote color-theme-analyze-defun) "color-theme" "\89Once you have a color-theme printed, check for missing faces.90This is used by maintainers who receive a color-theme submission91and want to make sure it follows the guidelines by the color-theme92author.9394\(fn)" t nil)9596(autoload (quote color-theme-make-snapshot) "color-theme" "\97Return the definition of the current color-theme.98The function returned will recreate the color-theme in use at the moment.99100\(fn)" nil nil)101102(autoload (quote color-theme-compare) "color-theme" "\103Compare two color themes.104This will print the differences between installing THEME-A and105installing THEME-B. Note that the order is important: If a face is106defined in THEME-A and not in THEME-B, then this will not show up as a107difference, because there is no reset before installing THEME-B. If a108face is defined in THEME-B and not in THEME-A, then this will show up as109a difference.110111\(fn THEME-A THEME-B)" t nil)112113(autoload (quote color-theme-install) "color-theme" "\114Install a color theme defined by frame parameters, variables and faces.115116The theme is installed for all present and future frames; any missing117faces are created. See `color-theme-install-faces'.118119THEME is a color theme definition. See below for more information.120121If you want to install a color theme from your .emacs, use the output122generated by `color-theme-print'. This produces color theme function123which you can copy to your .emacs.124125A color theme definition is a list:126\([FUNCTION] FRAME-PARAMETERS VARIABLE-SETTINGS FACE-DEFINITIONS)127128FUNCTION is the color theme function which called `color-theme-install'.129This is no longer used. There was a time when this package supported130automatic factoring of color themes. This has been abandoned.131132FRAME-PARAMETERS is an alist of frame parameters. These are installed133with `color-theme-install-frame-params'. These are installed last such134that any changes to the default face can be changed by the frame135parameters.136137VARIABLE-DEFINITIONS is an alist of variable settings. These are138installed with `color-theme-install-variables'.139140FACE-DEFINITIONS is an alist of face definitions. These are installed141with `color-theme-install-faces'.142143If `color-theme-is-cumulative' is nil, a color theme will undo face and144frame-parameter settings of previous color themes.145146\(fn THEME)" nil nil)147148(autoload (quote color-theme-submit) "color-theme" "\149Submit your color-theme to the maintainer.150151\(fn)" t nil)152153(autoload (quote color-theme-initialize) "color-theme" "\154Initialize the color theme package by loading color-theme-libraries.155156\(fn)" t nil)157158;;;***159160161