summaryrefslogtreecommitdiff
path: root/lisp/cus-edit.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2016-04-28 14:50:24 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2016-04-28 14:50:24 +0200
commit14508eaa3c0a97e305e8eebae5ce55787eec1e4a (patch)
treeb75ca37a940a7ba3396947cc0be34360083486a3 /lisp/cus-edit.el
parentad3ef417f3c40f086de9c547d6272e5685595e42 (diff)
downloademacs-14508eaa3c0a97e305e8eebae5ce55787eec1e4a.tar.gz
Clean up custom-buffer-create code slightly
* lisp/cus-edit.el (custom-buffer-create-other-window): Don't pass the unused description value on (for clarity) (bug#10540). (custom-buffer-create): Ditto
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r--lisp/cus-edit.el16
1 files changed, 9 insertions, 7 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index addff82c624..cf98b608203 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -1543,27 +1543,29 @@ not for everybody."
buf))))
;;;###autoload
-(defun custom-buffer-create (options &optional name description)
+(defun custom-buffer-create (options &optional name _description)
"Create a buffer containing OPTIONS.
Optional NAME is the name of the buffer.
OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
SYMBOL is a customization option, and WIDGET is a widget for editing
that option.
-DESCRIPTION is unused."
- (pop-to-buffer-same-window (custom-get-fresh-buffer (or name "*Customization*")))
- (custom-buffer-create-internal options description))
+_DESCRIPTION is unused."
+ (pop-to-buffer-same-window
+ (custom-get-fresh-buffer (or name "*Customization*")))
+ (custom-buffer-create-internal options))
;;;###autoload
-(defun custom-buffer-create-other-window (options &optional name description)
+(defun custom-buffer-create-other-window (options &optional name _description)
"Create a buffer containing OPTIONS, and display it in another window.
The result includes selecting that window.
Optional NAME is the name of the buffer.
OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
SYMBOL is a customization option, and WIDGET is a widget for editing
-that option."
+that option.
+_DESCRIPTION is unused."
(unless name (setq name "*Customization*"))
(switch-to-buffer-other-window (custom-get-fresh-buffer name))
- (custom-buffer-create-internal options description))
+ (custom-buffer-create-internal options))
(defcustom custom-reset-button-menu t
"If non-nil, only show a single reset button in customize buffers.