]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove some compat code from erc
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 19 Aug 2020 09:32:56 +0000 (11:32 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 19 Aug 2020 09:32:56 +0000 (11:32 +0200)
* lisp/erc/erc.el (erc-mode): next-line-add-newlines is always
defined, so remove the check.

lisp/erc/erc.el

index b4800053da21eca19acf60a47e8d4fde01864f73..8712113790bc2be6c2c9ff50dcd2225f951767c0 100644 (file)
@@ -1489,8 +1489,7 @@ Defaults to the server buffer."
 (define-derived-mode erc-mode fundamental-mode "ERC"
   "Major mode for Emacs IRC."
   (setq local-abbrev-table erc-mode-abbrev-table)
-  (when (boundp 'next-line-add-newlines)
-    (set (make-local-variable 'next-line-add-newlines) nil))
+  (set (make-local-variable 'next-line-add-newlines) nil)
   (setq line-move-ignore-invisible t)
   (set (make-local-variable 'paragraph-separate)
        (concat "\C-l\\|\\(^" (regexp-quote (erc-prompt)) "\\)"))