aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2007-12-29 19:10:34 +0000
committerRichard M. Stallman <[email protected]>2007-12-29 19:10:34 +0000
commit20d29b0bbc8650957cf62643ff8e6683709693c5 (patch)
treed055989e4b158713e1abe6e15f2091121998cbf5
parent422abbfd2240b7e9e05907dac4d5afc6aa452c81 (diff)
(facep): Doc fix.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/faces.el6
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5aa604aebc..5da1bb7b6c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
2007-12-29 Richard Stallman <[email protected]>
+ * faces.el (facep): Doc fix.
+
* startup.el (fancy-startup-tail, fancy-about-text)
(fancy-startup-text): Regularize format of face property.
diff --git a/lisp/faces.el b/lisp/faces.el
index a1b069e9ba..ed319b77b0 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -206,10 +206,8 @@ The optional argument FRAME is ignored."
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun facep (face)
- "Return non-nil if FACE is a face name or internal face object.
-Return nil otherwise. A face name can be a string or a symbol.
-An internal face object is a vector of the kind used internally
-to record face data."
+ "Return non-nil if FACE is a face name; nil otherwise.
+A face name can be a string or a symbol."
(internal-lisp-face-p face))