aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/erc
diff options
context:
space:
mode:
authorGlenn Morris2014-11-09 23:39:35 -0800
committerGlenn Morris2014-11-09 23:39:35 -0800
commitc832df2ec2f6528bc35f69f9fd9a4b2e470d2ebe (patch)
tree98a77f1acdac589d1be95dea128af1af7e8dc286 /lisp/erc
parenteca1ea96559e04e18a62a61208d501c557dd4cab (diff)
parentedfdb22f674312389ccf5d5e37efa4d3f1516994 (diff)
downloademacs-c832df2ec2f6528bc35f69f9fd9a4b2e470d2ebe.tar.gz
emacs-c832df2ec2f6528bc35f69f9fd9a4b2e470d2ebe.zip
Merge from emacs-24; up to 117698
Diffstat (limited to 'lisp/erc')
-rw-r--r--lisp/erc/ChangeLog5
-rw-r--r--lisp/erc/erc-backend.el4
-rw-r--r--lisp/erc/erc-button.el2
-rw-r--r--lisp/erc/erc-join.el4
-rw-r--r--lisp/erc/erc-match.el2
-rw-r--r--lisp/erc/erc-stamp.el2
-rw-r--r--lisp/erc/erc.el4
7 files changed, 14 insertions, 9 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog
index 0875994e775..475b99edb93 100644
--- a/lisp/erc/ChangeLog
+++ b/lisp/erc/ChangeLog
@@ -1,3 +1,8 @@
12014-11-10 Kelvin White <kwhite@gnu.org>
2
3 * erc-match.el, erc-join.el, erc-stamp.el, erc-backend.el, erc.el:
4 * erc-button.el: Update version to 24.5.
5
12014-11-05 Stefan Monnier <monnier@iro.umontreal.ca> 62014-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * erc.el (erc-send-input): Bind `str' dynamically (bug#18936). 8 * erc.el (erc-send-input): Bind `str' dynamically (bug#18936).
diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el
index fb22f58822d..2c6b03720f0 100644
--- a/lisp/erc/erc-backend.el
+++ b/lisp/erc/erc-backend.el
@@ -333,7 +333,7 @@ Good luck."
333This will only be consulted if the coding system in 333This will only be consulted if the coding system in
334`erc-server-coding-system' is `undecided'." 334`erc-server-coding-system' is `undecided'."
335 :group 'erc-server 335 :group 'erc-server
336 :version "24.1" 336 :version "24.5"
337 :type '(repeat coding-system)) 337 :type '(repeat coding-system))
338 338
339(defcustom erc-server-coding-system (if (and (fboundp 'coding-system-p) 339(defcustom erc-server-coding-system (if (and (fboundp 'coding-system-p)
@@ -400,7 +400,7 @@ isn't displayed."
400(defcustom erc-server-timestamp-format "%Y-%m-%d %T" 400(defcustom erc-server-timestamp-format "%Y-%m-%d %T"
401 "Timestamp format used with server response messages. 401 "Timestamp format used with server response messages.
402This string is processed using `format-time-string'." 402This string is processed using `format-time-string'."
403 :version "24.3" 403 :version "24.5"
404 :type 'string 404 :type 'string
405 :group 'erc-server) 405 :group 'erc-server)
406 406
diff --git a/lisp/erc/erc-button.el b/lisp/erc/erc-button.el
index 6e2c60cf6fa..b83fd9eeeb9 100644
--- a/lisp/erc/erc-button.el
+++ b/lisp/erc/erc-button.el
@@ -183,7 +183,7 @@ PAR is a number of a regexp grouping whose text will be passed to
183 'nicknames, these are ignored, and CALLBACK will be called with 183 'nicknames, these are ignored, and CALLBACK will be called with
184 the nickname matched as the argument." 184 the nickname matched as the argument."
185 :group 'erc-button 185 :group 'erc-button
186 :version "24.3" ; remove finger (bug#4443) 186 :version "24.5" ; remove finger (bug#4443)
187 :type '(repeat 187 :type '(repeat
188 (list :tag "Button" 188 (list :tag "Button"
189 (choice :tag "Matches" 189 (choice :tag "Matches"
diff --git a/lisp/erc/erc-join.el b/lisp/erc/erc-join.el
index e47e6e0c89e..0a24cb864da 100644
--- a/lisp/erc/erc-join.el
+++ b/lisp/erc/erc-join.el
@@ -83,7 +83,7 @@ If the value is `ident', autojoin after successful NickServ
83identification, or after `erc-autojoin-delay' seconds. 83identification, or after `erc-autojoin-delay' seconds.
84Any other value means the same as `connect'." 84Any other value means the same as `connect'."
85 :group 'erc-autojoin 85 :group 'erc-autojoin
86 :version "24.1" 86 :version "24.5"
87 :type '(choice (const :tag "On Connection" connect) 87 :type '(choice (const :tag "On Connection" connect)
88 (const :tag "When Identified" ident))) 88 (const :tag "When Identified" ident)))
89 89
@@ -93,7 +93,7 @@ This only takes effect if `erc-autojoin-timing' is `ident'.
93If NickServ identification occurs before this delay expires, ERC 93If NickServ identification occurs before this delay expires, ERC
94autojoins immediately at that time." 94autojoins immediately at that time."
95 :group 'erc-autojoin 95 :group 'erc-autojoin
96 :version "24.1" 96 :version "24.5"
97 :type 'integer) 97 :type 'integer)
98 98
99(defcustom erc-autojoin-domain-only t 99(defcustom erc-autojoin-domain-only t
diff --git a/lisp/erc/erc-match.el b/lisp/erc/erc-match.el
index b10da96f6f4..a8a4e58362c 100644
--- a/lisp/erc/erc-match.el
+++ b/lisp/erc/erc-match.el
@@ -237,7 +237,7 @@ current-nick, keyword, pal, dangerous-host, fool"
237useful for excluding all the things like MOTDs from the server 237useful for excluding all the things like MOTDs from the server
238and other miscellaneous functions." 238and other miscellaneous functions."
239 :group 'erc-match 239 :group 'erc-match
240 :version "24.3" 240 :version "24.5"
241 :type 'boolean) 241 :type 'boolean)
242 242
243;; Internal variables: 243;; Internal variables:
diff --git a/lisp/erc/erc-stamp.el b/lisp/erc/erc-stamp.el
index 39ffbb4bf38..37982069abe 100644
--- a/lisp/erc/erc-stamp.el
+++ b/lisp/erc/erc-stamp.el
@@ -151,7 +151,7 @@ the minibuffer."
151 "Whether the timestamps should be intangible, i.e. prevent the point 151 "Whether the timestamps should be intangible, i.e. prevent the point
152from entering them and instead jump over them." 152from entering them and instead jump over them."
153 :group 'erc-stamp 153 :group 'erc-stamp
154 :version "25.1" 154 :version "24.5"
155 :type 'boolean) 155 :type 'boolean)
156 156
157(defface erc-timestamp-face '((t :weight bold :foreground "green")) 157(defface erc-timestamp-face '((t :weight bold :foreground "green"))
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index 37b24eaaa60..4acb7340fb2 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -104,7 +104,7 @@
104 104
105(defgroup erc-lurker nil 105(defgroup erc-lurker nil
106 "Hide specified message types sent by lurkers" 106 "Hide specified message types sent by lurkers"
107 :version "24.3" 107 :version "24.5"
108 :group 'erc-ignore) 108 :group 'erc-ignore)
109 109
110(defgroup erc-query nil 110(defgroup erc-query nil
@@ -5291,7 +5291,7 @@ into the ERC buffer, that text is not sent to the IRC server.
5291If the value is nil, `erc-send-current-line' always considers any 5291If the value is nil, `erc-send-current-line' always considers any
5292submitted line to be intentional." 5292submitted line to be intentional."
5293 :group 'erc 5293 :group 'erc
5294 :version "24.4" 5294 :version "24.5"
5295 :type '(choice number (other :tag "disabled" nil))) 5295 :type '(choice number (other :tag "disabled" nil)))
5296 5296
5297(defun erc-send-current-line () 5297(defun erc-send-current-line ()