diff options
Diffstat (limited to 'lisp/erc')
-rw-r--r-- | lisp/erc/erc-button.el | 1 | ||||
-rw-r--r-- | lisp/erc/erc.el | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/lisp/erc/erc-button.el b/lisp/erc/erc-button.el index bccf0e6f1f5..445595e2dad 100644 --- a/lisp/erc/erc-button.el +++ b/lisp/erc/erc-button.el @@ -248,7 +248,6 @@ specified by `erc-button-alist'." (save-excursion (with-syntax-table erc-button-syntax-table (let ((buffer-read-only nil) - (inhibit-point-motion-hooks t) (inhibit-field-text-motion t) (alist erc-button-alist) regexp) diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index 20f22c896fe..f128387bcf6 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el @@ -2749,8 +2749,7 @@ current session. `active' means the current active buffer buffer is used. `erc-display-line-1' is used to display STRING. If STRING is nil, the function does nothing." - (let ((inhibit-point-motion-hooks t) - new-bufs) + (let (new-bufs) (dolist (buf (cond ((bufferp buffer) (list buffer)) ((listp buffer) buffer) |