diff options
author | Markus Rost <rost@math.uni-bielefeld.de> | 2003-01-02 18:02:09 +0000 |
---|---|---|
committer | Markus Rost <rost@math.uni-bielefeld.de> | 2003-01-02 18:02:09 +0000 |
commit | b59b77f1367306842213a2300c62fa24cea49fb8 (patch) | |
tree | e5fb04e937b1644ba5e797d9c70a3b37f225f361 | |
parent | 0e5ddee193d9a944304e025d0956e490bf0b1adb (diff) | |
download | emacs-b59b77f1367306842213a2300c62fa24cea49fb8.tar.gz |
(customize-group, customize-group-other-window):
Call custom-load-symbol unconditionally.
(customize-face, customize-face-other-window): Fix format arg.
-rw-r--r-- | lisp/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/cus-edit.el | 10 |
2 files changed, 10 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 09ceed9a897..522fa2fe9ec 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2003-01-02 Markus Rost <rost@math.ohio-state.edu> + + * cus-edit.el (customize-group, customize-group-other-window): + Call custom-load-symbol unconditionally. + (customize-face, customize-face-other-window): Fix format arg. + 2003-01-02 John Paul Wallington <jpw@shootybangbang.com> * menu-bar.el (menu-bar-left-scroll-bar): Set `scroll-bar-mode' diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 4369437a136..e8eded3b1af 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -878,8 +878,7 @@ then prompt for the MODE to customize." (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 @@ then prompt for the MODE to customize." (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 @@ suggest to customized that face, if it's customizable." 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 @@ suggest to customized that face, if it's customizable." 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*" |