aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2016-01-12 20:32:20 -0500
committerGlenn Morris2016-01-12 20:32:20 -0500
commit30d465b0601fabf5400646a057cdc077d4866759 (patch)
tree6cdf2038b1e2a8fa5863ca00f399965ea5602582
parente85e0d5951bd4e6e69beec1301113f5f9b48f81d (diff)
downloademacs-30d465b0601fabf5400646a057cdc077d4866759.tar.gz
emacs-30d465b0601fabf5400646a057cdc077d4866759.zip
Fix some custom types.
* lisp/gnus/gnus-fun.el (gnus-x-face-omit-files, gnus-face-omit-files): * lisp/gnus/gnus.el (gnus-valid-select-methods): * lisp/mail/rmail.el (rmail-get-coding-function): * lisp/net/newst-treeview.el (newsticker-groups-filename): * lisp/progmodes/hideif.el (hide-ifdef-exclude-define-regexp): * lisp/textmodes/tildify.el (tildify-space-predicates): * lisp/url/url-tramp.el (url-tramp-protocols): Fix custom types.
-rw-r--r--lisp/gnus/gnus-fun.el4
-rw-r--r--lisp/gnus/gnus.el1
-rw-r--r--lisp/mail/rmail.el5
-rw-r--r--lisp/net/newst-treeview.el4
-rw-r--r--lisp/progmodes/hideif.el2
-rw-r--r--lisp/textmodes/tildify.el2
-rw-r--r--lisp/url/url-tramp.el4
7 files changed, 12 insertions, 10 deletions
diff --git a/lisp/gnus/gnus-fun.el b/lisp/gnus/gnus-fun.el
index fa78b5c6e15..a6b27300233 100644
--- a/lisp/gnus/gnus-fun.el
+++ b/lisp/gnus/gnus-fun.el
@@ -44,7 +44,7 @@
44 "Regexp to match faces in `gnus-x-face-directory' to be omitted." 44 "Regexp to match faces in `gnus-x-face-directory' to be omitted."
45 :version "25.1" 45 :version "25.1"
46 :group 'gnus-fun 46 :group 'gnus-fun
47 :type 'string) 47 :type '(choice (const nil) string))
48 48
49(defcustom gnus-face-directory (expand-file-name "faces" gnus-directory) 49(defcustom gnus-face-directory (expand-file-name "faces" gnus-directory)
50 "*Directory where Face PNG files are stored." 50 "*Directory where Face PNG files are stored."
@@ -56,7 +56,7 @@
56 "Regexp to match faces in `gnus-face-directory' to be omitted." 56 "Regexp to match faces in `gnus-face-directory' to be omitted."
57 :version "25.1" 57 :version "25.1"
58 :group 'gnus-fun 58 :group 'gnus-fun
59 :type 'string) 59 :type '(choice (const nil) string))
60 60
61(defcustom gnus-convert-pbm-to-x-face-command "pbmtoxbm %s | compface" 61(defcustom gnus-convert-pbm-to-x-face-command "pbmtoxbm %s | compface"
62 "Command for converting a PBM to an X-Face." 62 "Command for converting a PBM to an X-Face."
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el
index 1196ea9dfec..5d2ce7ee19f 100644
--- a/lisp/gnus/gnus.el
+++ b/lisp/gnus/gnus.el
@@ -1637,6 +1637,7 @@ this variable. I think."
1637 (const post-mail)) 1637 (const post-mail))
1638 (checklist :inline t :greedy t 1638 (checklist :inline t :greedy t
1639 (const :format "%v " address) 1639 (const :format "%v " address)
1640 (const cloud)
1640 (const global) 1641 (const global)
1641 (const :format "%v " prompt-address) 1642 (const :format "%v " prompt-address)
1642 (const :format "%v " physical-address) 1643 (const :format "%v " physical-address)
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index 9a03b0516df..390ca3fad52 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -692,8 +692,9 @@ Element N specifies the summary line for message N+1.")
692This is set to nil by default.") 692This is set to nil by default.")
693 693
694(defcustom rmail-get-coding-function nil 694(defcustom rmail-get-coding-function nil
695 "Function of no args to try to determine coding system for a message." 695 "Function of no args to try to determine coding system for a message.
696 :type 'function 696If nil, just search for `rmail-mime-charset-pattern'."
697 :type '(choice (const nil) function)
697 :group 'rmail 698 :group 'rmail
698 :version "24.4") 699 :version "24.4")
699 700
diff --git a/lisp/net/newst-treeview.el b/lisp/net/newst-treeview.el
index 0e75236154b..4de3d1d1125 100644
--- a/lisp/net/newst-treeview.el
+++ b/lisp/net/newst-treeview.el
@@ -132,9 +132,9 @@ Example: (\"Topmost group\" \"feed1\" (\"subgroup1\" \"feed 2\")
132 132
133(defcustom newsticker-groups-filename 133(defcustom newsticker-groups-filename
134 nil 134 nil
135 "Name of the newsticker groups settings file. This variable is obsolete." 135 "Name of the newsticker groups settings file."
136 :version "25.1" ; changed default value to nil 136 :version "25.1" ; changed default value to nil
137 :type 'string 137 :type '(choice (const nil) string)
138 :group 'newsticker-treeview) 138 :group 'newsticker-treeview)
139(make-obsolete-variable 'newsticker-groups-filename 'newsticker-dir "23.1") 139(make-obsolete-variable 'newsticker-groups-filename 'newsticker-dir "23.1")
140 140
diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el
index 43cf42c048b..cc7d1c368c5 100644
--- a/lisp/progmodes/hideif.el
+++ b/lisp/progmodes/hideif.el
@@ -138,7 +138,7 @@
138 138
139(defcustom hide-ifdef-exclude-define-regexp nil 139(defcustom hide-ifdef-exclude-define-regexp nil
140 "Ignore #define names if those names match this exclusion pattern." 140 "Ignore #define names if those names match this exclusion pattern."
141 :type 'string 141 :type '(choice (const nil) string)
142 :version "25.1") 142 :version "25.1")
143 143
144(defcustom hide-ifdef-expand-reinclusion-protection t 144(defcustom hide-ifdef-expand-reinclusion-protection t
diff --git a/lisp/textmodes/tildify.el b/lisp/textmodes/tildify.el
index eb799c09510..598060e9ec8 100644
--- a/lisp/textmodes/tildify.el
+++ b/lisp/textmodes/tildify.el
@@ -417,7 +417,7 @@ current `case-fold-search' setting."
417 "A list of predicate functions for `tildify-space' function." 417 "A list of predicate functions for `tildify-space' function."
418 :version "25.1" 418 :version "25.1"
419 :group 'tildify 419 :group 'tildify
420 :type '(repeat 'function)) 420 :type '(repeat function))
421 421
422(defcustom tildify-double-space-undos t 422(defcustom tildify-double-space-undos t
423 "Weather `tildify-space' should undo hard space when space is typed again." 423 "Weather `tildify-space' should undo hard space when space is typed again."
diff --git a/lisp/url/url-tramp.el b/lisp/url/url-tramp.el
index 9e191579d47..192a0459f33 100644
--- a/lisp/url/url-tramp.el
+++ b/lisp/url/url-tramp.el
@@ -30,11 +30,11 @@
30 30
31;;;###autoload 31;;;###autoload
32(defcustom url-tramp-protocols '("ftp" "ssh" "scp" "rsync" "telnet") 32(defcustom url-tramp-protocols '("ftp" "ssh" "scp" "rsync" "telnet")
33 "List of URL protocols the work is handled by Tramp. 33 "List of URL protocols for which the work is handled by Tramp.
34They must also be covered by `url-handler-regexp'." 34They must also be covered by `url-handler-regexp'."
35 :group 'url 35 :group 'url
36 :version "25.1" 36 :version "25.1"
37 :type '(list string)) 37 :type '(repeat string))
38 38
39(defun url-tramp-convert-url-to-tramp (url) 39(defun url-tramp-convert-url-to-tramp (url)
40 "Convert URL to a Tramp file name." 40 "Convert URL to a Tramp file name."