ERC: Do not include text properties when returning user input.

This commit is contained in:
Michael Olson 2009-01-03 23:11:06 +00:00
parent 35203a24f1
commit bd71014979
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2009-01-03 Michael Olson <mwolson@gnu.org>
* erc.el (erc-user-input): Do not include text properties when
returning user input.
2008-11-19 Andy Stewart <lazycat.manatee@gmail.com>
* erc.el (erc-header-line-uses-tabbar-p): New option that makes

View file

@ -5097,7 +5097,7 @@ Specifically, return the position of `erc-insert-marker'."
(defun erc-user-input ()
"Return the input of the user in the current buffer."
(buffer-substring
(buffer-substring-no-properties
erc-input-marker
(erc-end-of-input-line)))