Changeset 3988 for vendor/emacs-CVS_HEAD/lisp/cus-face.el
- Timestamp:
- 2005年11月26日 08時33分26秒 (3 years ago)
- Files:
-
- vendor/emacs-CVS_HEAD/lisp/cus-face.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
vendor/emacs-CVS_HEAD/lisp/cus-face.el
r3939 r3988 321 321 (spec (nth 1 entry)) 322 322 (now (nth 2 entry)) 323 (comment (nth 3 entry))) 323 (comment (nth 3 entry)) 324 oldspec) 324 325 ;; If FACE is actually an alias, customize the face it 325 326 ;; is aliased to. 326 327 (if (get face 'face-alias) 327 328 (setq face (get face 'face-alias))) 328 (put face 'saved-face spec) 329 (put face 'saved-face-comment comment) 329 330 (setq oldspec (get face 'theme-face)) 331 (when (not (and oldspec (eq 'user (caar oldspec)))) 332 (put face 'saved-face spec) 333 (put face 'saved-face-comment comment)) 334 330 335 (custom-push-theme 'theme-face face theme 'set spec) 331 336 (when (or now immediate)
