aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/erc
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/erc')
-rw-r--r--lisp/erc/ChangeLog4
-rw-r--r--lisp/erc/erc.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog
index 75a01581fcd..0875994e775 100644
--- a/lisp/erc/ChangeLog
+++ b/lisp/erc/ChangeLog
@@ -1,3 +1,7 @@
12014-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * erc.el (erc-send-input): Bind `str' dynamically (bug#18936).
4
12014-10-29 Paul Eggert <eggert@cs.ucla.edu> 52014-10-29 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 Simplify use of current-time and friends. 7 Simplify use of current-time and friends.
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index 3bb68abfc9e..37b24eaaa60 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -1005,7 +1005,7 @@ display of that particular string at all."
1005 "Hook called first when some text is sent through `erc-send-current-line'. 1005 "Hook called first when some text is sent through `erc-send-current-line'.
1006It gets called with one argument, STRING. 1006It gets called with one argument, STRING.
1007 1007
1008To change the text that will be sent, set the variable STR which is 1008To change the text that will be sent, set the variable `str' which is
1009used in `erc-send-current-line'. 1009used in `erc-send-current-line'.
1010 1010
1011To change the text inserted into the buffer without changing the text 1011To change the text inserted into the buffer without changing the text
@@ -5361,6 +5361,7 @@ This returns non-nil only if we actually send anything."
5361 (beep)) 5361 (beep))
5362 nil) 5362 nil)
5363 (t 5363 (t
5364 (defvar str) ;; FIXME: Make it obey the "erc-" prefix convention.
5364 (let ((str input) 5365 (let ((str input)
5365 (erc-insert-this t)) 5366 (erc-insert-this t))
5366 (setq erc-send-this t) 5367 (setq erc-send-this t)