1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-24 10:38:38 +00:00

(custom-declare-face): Record defface in current-load-list.

This commit is contained in:
Richard M. Stallman 2005-01-05 01:10:24 +00:00
parent 20a514ceed
commit 4829145ae3
2 changed files with 17 additions and 0 deletions

View File

@ -1,3 +1,19 @@
2005-01-04 Richard M. Stallman <rms@gnu.org>
* cus-face.el (custom-declare-face):
Record defface in current-load-list.
* help-fns.el (variable-at-point): New arg ANY-SYMBOL.
* emacs-lisp/find-func.el: Doc fixes.
(find-face-regexp): New variable.
(find-function-regexp-alist): New variable.
(find-function-C-source): Third arg is now TYPE.
(find-function-search-for-symbol): Handle general TYPE.
(find-function-read, find-function-do-it): Handle general TYPE.
(find-definition-noselect, find-face): New functions.
(function-at-point): Alias deleted.
2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
* battery.el (display-battery-mode): Rename from display-battery.

View File

@ -50,6 +50,7 @@
(make-face-x-resource-internal face))))
;; Don't record SPEC until we see it causes no errors.
(put face 'face-defface-spec spec)
(push (cons 'defface face) current-load-list)
(when (and doc (null (face-documentation face)))
(set-face-documentation face (purecopy doc)))
(custom-handle-all-keywords face args 'custom-face)