comparison lisp/custom/custom.el @ 26:441bb1e64a06 r19-15b96

Import from CVS: tag r19-15b96
author cvs
date Mon, 13 Aug 2007 08:51:32 +0200
parents 4103f0995bd7
children 1917ad0d78d7
comparison
equal deleted inserted replaced
25:383a494979f8 26:441bb1e64a06
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.44 7 ;; Version: 1.46
8 ;; X-URL: http://www.dina.kvl.dk/~abraham/custom/ 8 ;; X-URL: http://www.dina.kvl.dk/~abraham/custom/
9 9
10 ;;; Commentary: 10 ;;; Commentary:
11 ;; 11 ;;
12 ;; If you want to use this code, please visit the URL above. 12 ;; If you want to use this code, please visit the URL above.
492 (put face 'saved-face spec)) 492 (put face 'saved-face spec))
493 (setq args (cdr (cdr args))))))) 493 (setq args (cdr (cdr args)))))))
494 494
495 ;;; Meta Customization 495 ;;; Meta Customization
496 496
497 (defgroup emacs nil
498 "Customization of the One True Editor."
499 :link '(custom-manual "(emacs)Top"))
500
501 (defgroup customize '((widgets custom-group))
502 "Customization of the Customization support."
503 :link '(custom-manual "(custom)Top")
504 :link '(url-link :tag "Development Page"
505 "http://www.dina.kvl.dk/~abraham/custom/")
506 :prefix "custom-"
507 :group 'emacs)
508
509 (defcustom custom-define-hook nil 497 (defcustom custom-define-hook nil
510 "Hook called after defining each customize option." 498 "Hook called after defining each customize option."
511 :group 'customize 499 :group 'customize
512 :type 'hook) 500 :type 'hook)
513 501