# HG changeset patch # User Markus Rost # Date 1041530479 0 # Node ID 4a3d5b9c79b9a461d8ab3e130f5d6580467e3a4f # Parent 5f0cc4c0a0c7c73cf3082d228d32c305314e4bf2 (customize-group, customize-group-other-window): Call custom-load-symbol unconditionally. (customize-face, customize-face-other-window): Fix format arg. diff -r 5f0cc4c0a0c7 -r 4a3d5b9c79b9 lisp/cus-edit.el --- a/lisp/cus-edit.el Thu Jan 02 16:08:15 2003 +0000 +++ b/lisp/cus-edit.el Thu Jan 02 18:01:19 2003 +0000 @@ -878,8 +878,7 @@ (if (string-equal "" group) (setq group 'emacs) (setq group (intern group)))) - (or (get group 'custom-group) - (custom-load-symbol group)) + (custom-load-symbol group) (let ((name (format "*Customize Group: %s*" (custom-unlispify-tag-name group)))) (if (get-buffer name) @@ -903,8 +902,7 @@ (if (string-equal "" group) (setq group 'emacs) (setq group (intern group)))) - (or (get group 'custom-group) - (custom-load-symbol group)) + (custom-load-symbol group) (let ((name (format "*Customize Group: %s*" (custom-unlispify-tag-name group)))) (if (get-buffer name) @@ -1082,7 +1080,7 @@ t nil) "*Customize Faces*") (unless (facep face) - (error "Invalid face %S")) + (error "Invalid face %S" face)) (custom-buffer-create (list (list face 'custom-face)) (format "*Customize Face: %s*" (custom-unlispify-tag-name face))))) @@ -1108,7 +1106,7 @@ t nil) "*Customize Faces*") (unless (facep face) - (error "Invalid face %S")) + (error "Invalid face %S" face)) (custom-buffer-create-other-window (list (list face 'custom-face)) (format "*Customize Face: %s*"