diff options
| author | Richard M. Stallman | 2005-01-07 02:52:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-01-07 02:52:29 +0000 |
| commit | c7ce7fc43b68369e18de0ccc5ded610823b8c1da (patch) | |
| tree | a1e0da51ffdbcee92113ca2a8a3bc10cff486a57 /lisp | |
| parent | 762566f3a1641cde8d558bcfedee160f92df7898 (diff) | |
| download | emacs-c7ce7fc43b68369e18de0ccc5ded610823b8c1da.tar.gz emacs-c7ce7fc43b68369e18de0ccc5ded610823b8c1da.zip | |
(find-face-definition): Renamed from find-face.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/emacs-lisp/find-func.el | 4 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9be77b5d0c3..eb17386d567 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-01-06 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/find-func.el (find-face-definition): | ||
| 4 | Renamed from find-face. | ||
| 5 | |||
| 1 | 2005-01-06 Kim F. Storm <storm@cua.dk> | 6 | 2005-01-06 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * simple.el (completion-list-mode-map): Map follow-link to mouse-face. | 8 | * simple.el (completion-list-mode-map): Map follow-link to mouse-face. |
| @@ -32,6 +37,9 @@ | |||
| 32 | 37 | ||
| 33 | 2005-01-05 Richard M. Stallman <rms@gnu.org> | 38 | 2005-01-05 Richard M. Stallman <rms@gnu.org> |
| 34 | 39 | ||
| 40 | * custom.el (custom-set-variables, custom-theme-set-variables): | ||
| 41 | Clarify documentation. | ||
| 42 | |||
| 35 | * emacs-lisp/find-func.el (find-variable) | 43 | * emacs-lisp/find-func.el (find-variable) |
| 36 | (find-variable-other-window, find-variable-other-frame): | 44 | (find-variable-other-window, find-variable-other-frame): |
| 37 | Fix the TYPE args to find-function-read and find-function-do-it. | 45 | Fix the TYPE args to find-function-read and find-function-do-it. |
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index 49e44ca5fee..7e2ac5aa883 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el | |||
| @@ -418,8 +418,10 @@ The library where SYMBOL is defined is searched for in FILE or | |||
| 418 | (let ((library (or file (symbol-file symbol type)))) | 418 | (let ((library (or file (symbol-file symbol type)))) |
| 419 | (find-function-search-for-symbol symbol type library)))) | 419 | (find-function-search-for-symbol symbol type library)))) |
| 420 | 420 | ||
| 421 | ;; For symmetry, this should be called find-face; but some programs | ||
| 422 | ;; assume that, if that name is defined, it means something else. | ||
| 421 | ;;;###autoload | 423 | ;;;###autoload |
| 422 | (defun find-face (face) | 424 | (defun find-face-definition (face) |
| 423 | "Find the definition of FACE. FACE defaults to the name near point. | 425 | "Find the definition of FACE. FACE defaults to the name near point. |
| 424 | 426 | ||
| 425 | Finds the Emacs Lisp library containing the definition of the face | 427 | Finds the Emacs Lisp library containing the definition of the face |