diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 2 | ||||
-rw-r--r-- | lisp/faces.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 710cbcf8efa..17a8628b3d5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca> + * faces.el (face-list): Fix docstring (bug#9564). + * window.el (display-buffer--action-function-custom-type): Don't include internal functions in the Custom interface. diff --git a/lisp/faces.el b/lisp/faces.el index fbe0f30ae6e..9a14e832065 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -119,7 +119,7 @@ REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc." (defun face-list () - "Return a list of all defined face names." + "Return a list of all defined faces." (mapcar #'car face-new-frame-defaults)) |