]> git.eshelyaron.com Git - emacs.git/commitdiff
Use user-error for customize's "invalid face" error
authorGlenn Morris <rgm@gnu.org>
Fri, 14 Apr 2017 00:17:08 +0000 (20:17 -0400)
committerGlenn Morris <rgm@gnu.org>
Fri, 14 Apr 2017 00:17:08 +0000 (20:17 -0400)
* lisp/cus-edit.el (customize-face): Use user-error.
(debug-ignored-errors): No more need to add "Invalid face".

lisp/cus-edit.el

index f408e835769fcd5c74a68a9bf8dd364b8633d726..ca6b8a38d995b30cc94d3c3f974c263ca2de4b95 100644 (file)
@@ -1334,7 +1334,7 @@ suggest to customize that face, if it's customizable."
       (if (get face 'face-alias)
          (setq face (get face 'face-alias)))
       (unless (facep face)
-       (error "Invalid face %S" face))
+       (user-error "Invalid face %S" face))
       (funcall display-fun
               (list (list face 'custom-face))
               (format "*Customize Face: %s*"
@@ -4846,8 +4846,6 @@ if that value is non-nil."
 
 (define-obsolete-function-alias 'custom-mode 'Custom-mode "23.1")
 
-(add-to-list 'debug-ignored-errors "^Invalid face:? ")
-
 ;;; The End.
 
 (provide 'cus-edit)