Gnus development mailing list
 help / color / mirror / Atom feed
From: Steven L Baur <steve@miranova.com>
Cc: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
Subject: Re: September Gnus 0.39 is released
Date: 19 Feb 1996 17:33:01 -0800	[thread overview]
Message-ID: <m2lolykche.fsf@deanna.miranova.com> (raw)
In-Reply-To: Lars Magne Ingebrigtsen's message of 19 Feb 1996 14:44:48 -0800

XEmacs fixes for v0.39 follow.
===================================================================
RCS file: RCS/ChangeLog,v
retrieving revision 1.40
diff -u -r1.40 ChangeLog
--- ChangeLog	1996/02/19 23:48:29	1.40
+++ ChangeLog	1996/02/20 01:26:49
@@ -1,3 +1,15 @@
+Mon Feb 19 17:23:07 1996  Steven L. Baur  <steve@miranova.com>
+
+	* gnus-cite.el (gnus-cite-parse): Use new gnus-set-text-properties
+	alias.
+
+	* nnbabyl.el (nnbabyl-request-expire-articles): Ditto.
+
+	* gnus-uu.el (gnus-uu-save-article): Ditto.
+
+	* gnus-msg.el (gnus-forward-insert-buffer): Ditto.
+	(gnus-copy-article-buffer): Ditto.
+
 Mon Feb 19 23:01:33 1996  Lars Magne Ingebrigtsen  <larsi@aegir.ifi.uio.no>
 
 	* browse-url.el: New version installed.
===================================================================
RCS file: RCS/gnus-cite.el,v
retrieving revision 1.8
diff -u -r1.8 gnus-cite.el
--- gnus-cite.el	1996/02/10 00:01:11	1.8
+++ gnus-cite.el	1996/02/20 01:21:25
@@ -455,7 +455,7 @@
 	;; Each prefix.
 	(setq end (match-end 0)
 	      prefix (buffer-substring begin end))
-	(set-text-properties 0 (length prefix) nil prefix)
+	(gnus-set-text-properties 0 (length prefix) nil prefix)
 	(setq entry (assoc prefix alist))
 	(if entry 
 	    (setcdr entry (cons line (cdr entry)))
===================================================================
RCS file: RCS/gnus-msg.el,v
retrieving revision 1.28
diff -u -r1.28 gnus-msg.el
--- gnus-msg.el	1996/02/19 23:48:29	1.28
+++ gnus-msg.el	1996/02/20 01:26:13
@@ -524,7 +524,7 @@
 	  (set-buffer article-buffer)
 	  (widen)
 	  (copy-to-buffer gnus-article-copy (point-min) (point-max))
-	  (set-text-properties (point-min) (point-max) 
+	  (gnus-set-text-properties (point-min) (point-max) 
 			       nil gnus-article-copy)))))
 
 (defun gnus-post-news (post &optional group header article-buffer yank subject)
@@ -2376,7 +2376,7 @@
       (insert-buffer-substring buffer)
       (goto-char (point-max))
       (insert gnus-forward-end-separator)
-      (set-text-properties (point-min) (point-max) nil)
+      (gnus-set-text-properties (point-min) (point-max) nil)
       ;; Remove all unwanted headers.
       (goto-char (point-min))
       (forward-line 1)
===================================================================
RCS file: RCS/gnus-uu.el,v
retrieving revision 1.18
diff -u -r1.18 gnus-uu.el
--- gnus-uu.el	1996/02/09 23:53:59	1.18
+++ gnus-uu.el	1996/02/20 01:25:04
@@ -762,7 +762,7 @@
 	  (save-restriction
 	    (set-buffer buffer)
 	    (let (buffer-read-only)
-	      (set-text-properties (point-min) (point-max) nil)
+	      (gnus-set-text-properties (point-min) (point-max) nil)
 	      ;; These two are necessary for XEmacs 19.12 fascism.
 	      (put-text-property (point-min) (point-max) 'invisible nil)
 	      (put-text-property (point-min) (point-max) 'intangible nil))
===================================================================
RCS file: RCS/nnbabyl.el,v
retrieving revision 1.13
diff -u -r1.13 nnbabyl.el
--- nnbabyl.el	1996/02/19 23:48:29	1.13
+++ nnbabyl.el	1996/02/20 01:23:42
@@ -274,7 +274,7 @@
 
     (save-excursion 
       (set-buffer nnbabyl-mbox-buffer)
-      (set-text-properties (point-min) (point-max) nil)
+      (gnus-set-text-properties (point-min) (point-max) nil)
       (while (and articles is-old)
 	(goto-char (point-min))
 	(if (search-forward (nnbabyl-article-string (car articles)) nil t)

-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be proofread for $250/hour.
Andrea Seastrand: For your vote on the Telecom bill, I will vote for anyone
except you in November.


  reply	other threads:[~1996-02-20  1:33 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1996-02-19 22:44 Lars Magne Ingebrigtsen
1996-02-20  1:33 ` Steven L Baur [this message]
1996-02-20 17:37   ` Mark Borges
1996-02-20 17:53     ` Steven L Baur
1996-02-20 21:06       ` Mark Borges
1996-02-22  1:12         ` Lars Magne Ingebrigtsen
1996-02-23 10:31     ` srivasta
1996-02-21  9:10 ` Gnus and memory Mr. Blond

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m2lolykche.fsf@deanna.miranova.com \
    --to=steve@miranova.com \
    --cc=larsi@ifi.uio.no \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).