diff options
author | Leo Liu <sdl.web@gmail.com> | 2012-02-13 15:54:47 +0800 |
---|---|---|
committer | Leo Liu <sdl.web@gmail.com> | 2012-02-13 15:54:47 +0800 |
commit | 142b4d90fa4a147dcfd2075448f39bf7a4356187 (patch) | |
tree | b569abb41b842a1904a1b56890b5a50ebd837729 /lisp/net/rcirc.el | |
parent | 9554f4ac2f4c26420ec71a06e76e8e5ac0d7deda (diff) | |
download | emacs-142b4d90fa4a147dcfd2075448f39bf7a4356187.tar.gz emacs-142b4d90fa4a147dcfd2075448f39bf7a4356187.tar.bz2 emacs-142b4d90fa4a147dcfd2075448f39bf7a4356187.zip |
Trivial fix for rcirc-markup-attributes
Diffstat (limited to 'lisp/net/rcirc.el')
-rw-r--r-- | lisp/net/rcirc.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el index b8bf270d87c..1c74e6190dc 100644 --- a/lisp/net/rcirc.el +++ b/lisp/net/rcirc.el @@ -2384,6 +2384,7 @@ keywords when no KEYWORD is given." (delete-region (match-beginning 1) (match-end 1)) (goto-char (match-beginning 1))) ;; remove the ^O characters now + (goto-char (point-min)) (while (re-search-forward "\C-o+" nil t) (delete-region (match-beginning 0) (match-end 0)))) |