aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2014-04-12 17:31:03 +0300
committerEli Zaretskii2014-04-12 17:31:03 +0300
commit3197074e49162f96a6eb33ca45fbbfddcf1ae01a (patch)
tree02f3c268cbccb2fd1bdd6336adbb3cca672e6a46
parent7f0f4c2576f8d70da3cb664e1e34ccfb78c0d4bc (diff)
downloademacs-3197074e49162f96a6eb33ca45fbbfddcf1ae01a.tar.gz
emacs-3197074e49162f96a6eb33ca45fbbfddcf1ae01a.zip
Fix last commit.
-rw-r--r--lisp/faces.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index c2ef62f959f..f2ab81bc064 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -172,7 +172,7 @@ If FACE is already known as a face, leave it unmodified. Return FACE."
172Do not call this directly from Lisp code; use `defface' instead." 172Do not call this directly from Lisp code; use `defface' instead."
173 (interactive (list (read-from-minibuffer 173 (interactive (list (read-from-minibuffer
174 "Make empty face: " nil nil t 'face-name-history))) 174 "Make empty face: " nil nil t 'face-name-history)))
175 (make-face face) 175 (make-face face))
176 176
177(defun copy-face (old-face new-face &optional frame new-frame) 177(defun copy-face (old-face new-face &optional frame new-frame)
178 "Define a face named NEW-FACE, which is a copy of OLD-FACE. 178 "Define a face named NEW-FACE, which is a copy of OLD-FACE.