diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-05-17 06:39:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-05-17 06:39:39 +0000 |
commit | ab0e02300a152928f2ce1de1aef0b69cfbf3e876 (patch) | |
tree | f4223d88f98c0590f4f4511700860871b6700e19 | |
parent | 86f99bbb87bb32248aad2fb275d58cbfc1099c75 (diff) | |
download | emacs-ab0e02300a152928f2ce1de1aef0b69cfbf3e876.tar.gz |
(custom-facep): Defined (once again).
-rw-r--r-- | lisp/cus-face.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/cus-face.el b/lisp/cus-face.el index 1d986d42ea7..8b9ed38641c 100644 --- a/lisp/cus-face.el +++ b/lisp/cus-face.el @@ -30,6 +30,10 @@ ;;; Code: +(defalias 'custom-facep + (if (fboundp 'facep) 'facep + '(lambda (face) nil))) + ;;; Declaring a face. ;;;###autoload |