Mercurial > hg > xemacs-beta
comparison lisp/custom/custom.el @ 173:8eaf7971accc r20-3b13
Import from CVS: tag r20-3b13
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:49:09 +0200 |
parents | 85ec50267440 |
children | 6075d714658b |
comparison
equal
deleted
inserted
replaced
172:a38aed19690b | 173:8eaf7971accc |
---|---|
2 ;; | 2 ;; |
3 ;; Copyright (C) 1996, 1997 Free Software Foundation, Inc. | 3 ;; Copyright (C) 1996, 1997 Free Software Foundation, Inc. |
4 ;; | 4 ;; |
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> | 5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> |
6 ;; Keywords: help, faces | 6 ;; Keywords: help, faces |
7 ;; Version: 1.9940 | 7 ;; Version: 1.9951 |
8 ;; X-URL: http://www.dina.kvl.dk/~abraham/custom/ | 8 ;; X-URL: http://www.dina.kvl.dk/~abraham/custom/ |
9 | 9 |
10 ;; This file is part of GNU Emacs. | 10 ;; This file is part of GNU Emacs. |
11 | 11 |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | 12 ;; GNU Emacs is free software; you can redistribute it and/or modify |
193 :group VALUE should be a customization group. | 193 :group VALUE should be a customization group. |
194 Add SYMBOL to that group. | 194 Add SYMBOL to that group. |
195 :initialize VALUE should be a function used to initialize the | 195 :initialize VALUE should be a function used to initialize the |
196 variable. It takes two arguments, the symbol and value | 196 variable. It takes two arguments, the symbol and value |
197 given in the `defcustom' call. The default is | 197 given in the `defcustom' call. The default is |
198 `custom-initialize-default' | 198 `custom-initialize-set' |
199 :set VALUE should be a function to set the value of the symbol. | 199 :set VALUE should be a function to set the value of the symbol. |
200 It takes two arguments, the symbol to set and the value to | 200 It takes two arguments, the symbol to set and the value to |
201 give it. The default is `set-default'. | 201 give it. The default is `set-default'. |
202 :get VALUE should be a function to extract the value of symbol. | 202 :get VALUE should be a function to extract the value of symbol. |
203 The function takes one argument, a symbol, and should return | 203 The function takes one argument, a symbol, and should return |