aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/erc
diff options
context:
space:
mode:
authorStefan Kangas2022-07-06 15:25:56 +0200
committerStefan Kangas2022-07-06 15:30:32 +0200
commit22bcbf8e2cc271555a737c176c48e89daa0c17be (patch)
tree468fe0b6f5be309c82e5e8b42e3e9803e38b8cce /lisp/erc
parentb5cd9343aea2d7939209c35eef3247946df24dfa (diff)
downloademacs-22bcbf8e2cc271555a737c176c48e89daa0c17be.tar.gz
emacs-22bcbf8e2cc271555a737c176c48e89daa0c17be.zip
Fix missing :value with defcustom const :type
* lisp/calendar/calendar.el (calendar-intermonth-header) (calendar-intermonth-text, calendar-date-style): * lisp/calendar/diary-lib.el (diary-face-attrs): * lisp/emacs-lisp/package.el (package-check-signature): * lisp/erc/erc-dcc.el (erc-dcc-get-default-directory): * lisp/gnus/gnus-art.el (gnus-auto-select-part): * lisp/gnus/gnus-cus.el (gnus-agent-parameters): * lisp/gnus/gnus.el (gnus-user-agent): * lisp/mail/rmail.el (rmail-retry-ignored-headers): * lisp/progmodes/sh-script.el (sh-indent-after-continuation): Fix missing :value with defcustom const :type.
Diffstat (limited to 'lisp/erc')
-rw-r--r--lisp/erc/erc-dcc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/erc/erc-dcc.el b/lisp/erc/erc-dcc.el
index ff486b2d4ea..d0e1848e0eb 100644
--- a/lisp/erc/erc-dcc.el
+++ b/lisp/erc/erc-dcc.el
@@ -391,7 +391,7 @@ the accepted connection."
391(defcustom erc-dcc-get-default-directory nil 391(defcustom erc-dcc-get-default-directory nil
392 "Default directory for incoming DCC file transfers. 392 "Default directory for incoming DCC file transfers.
393If this is nil, then the current value of `default-directory' is used." 393If this is nil, then the current value of `default-directory' is used."
394 :type '(choice (const nil :tag "Default directory") directory)) 394 :type '(choice (const :value nil :tag "Default directory") directory))
395 395
396;;;###autoload 396;;;###autoload
397(defun erc-cmd-DCC (cmd &rest args) 397(defun erc-cmd-DCC (cmd &rest args)