emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/erc/erc-match.el,v


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/erc/erc-match.el,v
Date: Fri, 14 Jul 2006 02:29:52 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Miles Bader <miles>     06/07/14 02:29:50

Index: lisp/erc/erc-match.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/erc/erc-match.el,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- lisp/erc/erc-match.el       12 Feb 2006 20:25:00 -0000      1.3
+++ lisp/erc/erc-match.el       14 Jul 2006 02:29:49 -0000      1.4
@@ -553,10 +553,9 @@
                    ?m message
                    ?u nickuserhost))))
        (with-current-buffer (erc-log-matches-make-buffer match-buffer-name)
-         (toggle-read-only -1)
-         (point-max)
-         (insert line)
-         (toggle-read-only 1))))))
+         (let ((inhibit-read-only t))
+           (goto-char (point-max))
+           (insert line)))))))
 
 (defun erc-log-matches-make-buffer (name)
   "Create or get a log-matches buffer named NAME and return it."




reply via email to

[Prev in Thread] Current Thread [Next in Thread]